Update a specific catalog by id
curl --request PUT \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalogs",
"attributes": {
"name": "<string>",
"description": "<string>",
"icon": "globe-alt",
"position": 123
}
}
}'
{
"data": {
"id": "971b993c-941a-42db-8cb2-8b22c6002335",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": "Updated description",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-02T12:35:18.073-07:00",
"created_at": "2025-08-02T12:35:17.331-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "catalogs",
"attributes": {
"name": "<string>",
"description": "<string>",
"icon": "globe-alt",
"position": 123
}
}
}'
{
"data": {
"id": "971b993c-941a-42db-8cb2-8b22c6002335",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": "Updated description",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-02T12:35:18.073-07:00",
"created_at": "2025-08-02T12:35:17.331-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}