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": "52e4c608-07f5-47e5-9da0-32fb467e0149",
"type": "communications_types",
"attributes": {
"name": "Updated Type Name",
"slug": "xtzfz",
"description": "Updated description",
"color": "#00FF00",
"position": 1,
"created_at": "2026-02-17T18:08:27.490-08:00",
"updated_at": "2026-02-17T18:08:28.707-08: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": "52e4c608-07f5-47e5-9da0-32fb467e0149",
"type": "communications_types",
"attributes": {
"name": "Updated Type Name",
"slug": "xtzfz",
"description": "Updated description",
"color": "#00FF00",
"position": 1,
"created_at": "2026-02-17T18:08:27.490-08:00",
"updated_at": "2026-02-17T18:08:28.707-08:00",
"communication_groups": [],
"communication_templates": []
}
}
}