curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#JIRA_CREATE_ISSUE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "JIRA_CREATE_ISSUE",
"parameters": {
"summary": "<string>",
"project": "<string>",
"issueType": "<string>",
"jiraIssueStatus": "<string>",
"assignee": "<string>",
"descriptionType": "description",
"description": "<string>",
"descriptionJSON": "<string>",
"additionalFields": {}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#JIRA_CREATE_ISSUE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "JIRA_CREATE_ISSUE",
"parameters": {
"summary": "<string>",
"project": "<string>",
"issueType": "<string>",
"jiraIssueStatus": "<string>",
"assignee": "<string>",
"descriptionType": "description",
"description": "<string>",
"descriptionJSON": "<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
Summary : A brief one-line summary of the issue. (example: "The printer stopped working")
The project which the issue belongs to. Defaults to the user's first project if not provided
Issue type : Defaults to Task if not provided.
Status : Defaults to the project’s first status if not provided.
Assignee : Defaults to the authenticated user if not provided.
Description Type : Select the Description Type.
description, descriptionJSON Description : A detailed description of the issue. This field appears only when 'descriptionType' = 'description')
Description JSON : To use a description with formatting, specify an object in Atlassian Document Format. (https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/) (example: "{ "version": 1, "type": "doc", "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "Hello", "marks": [ { "type": "strong" } ] } ] } ] }") This field appears only when 'descriptionType' = 'descriptionJSON')
Specify any other fields that should be included in JSON below. (example: {"customField": "value"})
Success
Was this page helpful?