curl --request PATCH \
--url https://developer.synq.io/api/issues/v1/{issueId}/mark-no-action-needed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"issueId": "<string>",
"actor": {
"name": "<string>",
"slack": {
"userId": "<string>"
},
"email": {
"userEmail": "<string>"
},
"pagerduty": {
"userId": "<string>"
}
},
"time": "2023-11-07T05:31:56Z",
"requireNoExistingStatus": true
}'
{}
Mark issue as no action needed.
curl --request PATCH \
--url https://developer.synq.io/api/issues/v1/{issueId}/mark-no-action-needed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"issueId": "<string>",
"actor": {
"name": "<string>",
"slack": {
"userId": "<string>"
},
"email": {
"userEmail": "<string>"
},
"pagerduty": {
"userId": "<string>"
}
},
"time": "2023-11-07T05:31:56Z",
"requireNoExistingStatus": true
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the issue to mark as no action needed.
OK
The response is of type object
.