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": "98f15f98-6507-45aa-8415-dfba3b1d665d",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-04T13:07:52.416-08:00",
"created_at": "2026-02-04T13:07:49.979-08:00",
"catalog_id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97"
}
}
}
}
}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": "98f15f98-6507-45aa-8415-dfba3b1d665d",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-04T13:07:52.416-08:00",
"created_at": "2026-02-04T13:07:49.979-08:00",
"catalog_id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "6fe52ffd-4ff3-4000-b453-0de974dbfa97"
}
}
}
}
}