Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Communications Type ID
Body
application/vnd.api+json
Response
communications type updated
Updates a communications type
curl --request PATCH \
--url https://api.rootly.com/v1/communications/types/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "communications_types",
"attributes": {
"name": "<string>",
"description": "<string>",
"color": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "ebdbd240-bb52-4e36-ab94-e062ab1535ba",
"type": "communications_types",
"attributes": {
"name": "Updated Type Name",
"slug": "h7dfm",
"description": "Updated description",
"color": "#00FF00",
"position": 1,
"created_at": "2025-09-26T17:24:26.877-07:00",
"updated_at": "2025-09-26T17:24:28.552-07:00",
"communication_groups": [],
"communication_templates": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Communications Type ID
Show child attributes
communications type updated
Show child attributes
Was this page helpful?
curl --request PATCH \
--url https://api.rootly.com/v1/communications/types/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "communications_types",
"attributes": {
"name": "<string>",
"description": "<string>",
"color": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "ebdbd240-bb52-4e36-ab94-e062ab1535ba",
"type": "communications_types",
"attributes": {
"name": "Updated Type Name",
"slug": "h7dfm",
"description": "Updated description",
"color": "#00FF00",
"position": 1,
"created_at": "2025-09-26T17:24:26.877-07:00",
"updated_at": "2025-09-26T17:24:28.552-07:00",
"communication_groups": [],
"communication_templates": []
}
}
}