cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GITHUB_CREATE_ISSUE' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "GITHUB_CREATE_ISSUE", "parameters": { "owner": "<string>", "repo": "<string>", "title": "<string>", "body": "<string>", "assignees": "<string>" } } '
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
Owner : Specify the name of the account owner of the associated repository for this Issue. (example: "abc")
Repository : Specify the name of the associated repository for this Issue.
Issue Title : Specify the title of the issue to create.
Issue Body : Specify the body contents of the issue to create.
Assignees : Specify the assignee(s)' GitHub login as an array of strings for this issue. (example: "["octocat"]")
Success
Was this page helpful?