GitHub
Update Issue
GitHub
Update Issue
POST
/
projects
/
{project_id}
/
actions
/
#GITHUB_UPDATE_ISSUE
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"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
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.
Available options:
open
, closed
Response
200
Success
Was this page helpful?
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"
}
}'