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": "b4523371-6d5a-47d7-868f-dc8f0aa324de",
"type": "catalog_fields",
"attributes": {
"catalog_id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-03T21:28:48.032-08:00",
"created_at": "2025-12-03T21:28:47.266-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"type": "catalogs"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
catalog_fields Show child attributes
text, reference Restricts values to items of specified catalog.
Default position of the item when displayed in a list.
catalog_field updated
Show child attributes
Unique ID of the catalog_field
catalog_fields Show child attributes
text, reference Whether the attribute accepts multiple values.
Default position of the item when displayed in a list.
Restricts values to items of specified catalog.
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": "b4523371-6d5a-47d7-868f-dc8f0aa324de",
"type": "catalog_fields",
"attributes": {
"catalog_id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-03T21:28:48.032-08:00",
"created_at": "2025-12-03T21:28:47.266-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "6bed216b-e7d4-489b-b6f2-8a34c27f5d3d",
"type": "catalogs"
}
}
}
}
}