POST
/
projects
/
{project_id}
/
actions
/
#AZURE_DEVOPS_CREATE_WORKITEM
curl --request POST \
  --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#AZURE_DEVOPS_CREATE_WORKITEM' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "AZURE_DEVOPS_CREATE_WORKITEM",
  "parameters": {
    "project": "<string>",
    "workItemType": "BUG",
    "reproSteps": "<string>",
    "systemInfo": "<string>",
    "resolvedReason": "<string>",
    "storyPoints": "<string>",
    "priority": "<string>",
    "severity": "1 - Critical",
    "activity": "Deployment",
    "description": "<string>",
    "risk": "1",
    "effort": "<string>",
    "businessValue": "<string>",
    "timeCriticality": "<string>",
    "startDate": "<string>",
    "targetDate": "<string>",
    "title": "<string>",
    "assignee": "<string>",
    "state": "New",
    "reason": "<string>",
    "area": "<string>",
    "iteration": "<string>",
    "additionalFields": {}
  }
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Your Paragon Project ID

Body

application/json
action
string
default:AZURE_DEVOPS_CREATE_WORKITEM
required
parameters
object
required

Response

200

Success