POST
/
api
/
incidents
/
v1
/
{incident_id}
/
merge
MergeIncidents
curl --request POST \
  --url https://developer.synq.io/api/incidents/v1/{incident_id}/merge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "actor": {
    "email": {
      "userEmail": "jsmith@example.com"
    },
    "name": "<string>"
  },
  "at": "1s",
  "otherIncidentIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_id
string
required

ID of the primary incident to merge into

Body

application/json

Response

200
application/json

Success

The response is of type object.