PATCH
/
api
/
incidents
/
v1
/
{incident_id}
/
assign-owner
AssignIncidentOwner
curl --request PATCH \
  --url https://developer.synq.io/api/incidents/v1/{incident_id}/assign-owner \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ownerEmail": "<string>",
  "actor": {
    "email": {
      "userEmail": "jsmith@example.com"
    },
    "name": "<string>"
  }
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_id
string<uuid>
required

ID of the incident to assign the owner to

Body

application/json

Response

200
application/json

Success

The response is of type object.