curl --request DELETE \
--url https://developer.synq.io/api/incidents/v1/{incidentId}/issues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"incidentId": "<string>",
"actor": {
"name": "<string>",
"slack": {
"userId": "<string>"
},
"email": {
"userEmail": "<string>"
},
"pagerduty": {
"userId": "<string>"
}
},
"at": "2023-11-07T05:31:56Z",
"issueIds": [
"<string>"
]
}'
{}
curl --request DELETE \
--url https://developer.synq.io/api/incidents/v1/{incidentId}/issues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"incidentId": "<string>",
"actor": {
"name": "<string>",
"slack": {
"userId": "<string>"
},
"email": {
"userEmail": "<string>"
},
"pagerduty": {
"userId": "<string>"
}
},
"at": "2023-11-07T05:31:56Z",
"issueIds": [
"<string>"
]
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the incident to remove issues from
OK
The response is of type object
.