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",
"title": "<string>",
"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>",
"assignee": "<string>",
"state": "New",
"reason": "<string>",
"area": "<string>",
"iteration": "<string>",
"additionalFields": {}
}
}
'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",
"title": "<string>",
"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>",
"assignee": "<string>",
"state": "New",
"reason": "<string>",
"area": "<string>",
"iteration": "<string>",
"additionalFields": {}
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Specify a project to perform the operation in
Work Item Type : Search for work items that match specified filters. (example: "Type")
BUG, EPIC, FEATURE, ISSUE, TASK, TEST CASE, USER STORY Title
Repro Steps : Description of how to see the bug. This field appears only when 'workItemType' = 'BUG')
System Info : Test context, can be automatically provided by test infrastructure. This field appears only when 'workItemType' = 'BUG')
Resolved Reason : The reason why the bug was resolved. This field appears only when 'workItemType' = 'BUG')
Story Points : The size of work estimated for fixing the bug. This field appears only when 'workItemType' = 'BUG')
Priority : Business importance. This field appears only when 'workItemType' = 'BUG') This field appears only when 'type' = '') This field appears only when 'type' = '')
Severity : An assessment of the effect of the bug on the project. This field appears only when 'workItemType' = 'BUG')
1 - Critical, 2 - High, 3 - Medium, 4 - Low Activity : Type of work involved for this work item. This field appears only when 'workItemType' = 'BUG')
Deployment, Design, Development, Documentation , Requirements, Testing Description : Description or acceptance criteria for this epic to be considered complete. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Risk : Uncertainty in epic. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
1, 2, 3 Effort : The estimated effort to implemented the epic. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Business Value : The business value for the customer when the epic is released. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Time Criticality : How the business value of this epic decays over time. Higher values make the epic more time-critical. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Start Date : The date to start the task. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Target Date : The target date for completing the epic. This field appears only when 'workItemType' = 'EPIC') This field appears only when 'type' = '')
Assignee : Specify a user that this work item should be assigned to.
State : The state of the created work item.
New, Active, Resolved, Closed Reason : The reason for the created work item. This value may accept different values depending on the current State of the work item.
Specify the area for the work item
Specify the iteration for the work item
Additional Fields (example: " { "Custom.customfield": "Value for custom field" }")
Success
Was this page helpful?