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"
]
}'
{}
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"
]
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the primary incident to merge into
Success
The response is of type object
.