Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_role_task updated
The response is of type object
.
Update a specific incident_role task by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_role_tasks",
"attributes": {
"task": "<string>",
"description": "<string>",
"priority": "high"
}
}
}'
{
"data": {
"id": "5e0f5229-123b-4898-a601-d5df52bb8a33",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "40a41c99-7135-4300-992c-792c0a521005",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2025-09-15T07:48:53.527-07:00",
"updated_at": "2025-09-15T07:48:54.820-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_role_task updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_role_tasks",
"attributes": {
"task": "<string>",
"description": "<string>",
"priority": "high"
}
}
}'
{
"data": {
"id": "5e0f5229-123b-4898-a601-d5df52bb8a33",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "40a41c99-7135-4300-992c-792c0a521005",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2025-09-15T07:48:53.527-07:00",
"updated_at": "2025-09-15T07:48:54.820-07:00"
}
}
}