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