Update a specific catalog_field by id
curl --request PUT \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalog_fields",
"attributes": {
"name": "<string>",
"slug": "<string>",
"kind": "text",
"kind_catalog_id": "<string>",
"position": 123
}
}
}
'{
"data": {
"id": "c30f7ce6-42dc-4721-b87a-6914a8711475",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "8f8c4576-f066-4500-93d4-809d1146f7ab",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-23T22:55:03.197-08:00",
"created_at": "2026-01-23T22:55:02.277-08:00",
"catalog_id": "8f8c4576-f066-4500-93d4-809d1146f7ab"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "8f8c4576-f066-4500-93d4-809d1146f7ab"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
catalog_field updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "catalog_fields",
"attributes": {
"name": "<string>",
"slug": "<string>",
"kind": "text",
"kind_catalog_id": "<string>",
"position": 123
}
}
}
'{
"data": {
"id": "c30f7ce6-42dc-4721-b87a-6914a8711475",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "8f8c4576-f066-4500-93d4-809d1146f7ab",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-23T22:55:03.197-08:00",
"created_at": "2026-01-23T22:55:02.277-08:00",
"catalog_id": "8f8c4576-f066-4500-93d4-809d1146f7ab"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "8f8c4576-f066-4500-93d4-809d1146f7ab"
}
}
}
}
}