Azure DevOps
Devops Create Workitem
Azure DevOps
Devops Create Workitem
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
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": {}
}
}'