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>",
"kind": "text",
"kind_catalog_id": "<string>",
"position": 123
}
}
}
'{
"data": {
"id": "77222137-5294-4f8f-974b-1747298d027b",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "1abbecba-2c6f-4f3a-92a7-2623ff195822",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-05T13:31:37.853-08:00",
"created_at": "2026-02-05T13:31:36.247-08:00",
"catalog_id": "1abbecba-2c6f-4f3a-92a7-2623ff195822"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "1abbecba-2c6f-4f3a-92a7-2623ff195822"
}
}
}
}
}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>",
"kind": "text",
"kind_catalog_id": "<string>",
"position": 123
}
}
}
'{
"data": {
"id": "77222137-5294-4f8f-974b-1747298d027b",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "1abbecba-2c6f-4f3a-92a7-2623ff195822",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-05T13:31:37.853-08:00",
"created_at": "2026-02-05T13:31:36.247-08:00",
"catalog_id": "1abbecba-2c6f-4f3a-92a7-2623ff195822"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "1abbecba-2c6f-4f3a-92a7-2623ff195822"
}
}
}
}
}