DELETE
/
api
/
incidents
/
v1
/
{incidentId}
/
issues
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>"
  ]
}'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

incidentId
string
required

ID of the incident to remove issues from

Body

application/json

Response

200
application/json

OK

The response is of type object.