Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
catalog_field updated
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": "8205fd58-354b-4e29-b3db-c76e16862697",
"type": "catalog_fields",
"attributes": {
"catalog_id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-16T04:44:10.394-07:00",
"created_at": "2025-09-16T04:44:09.699-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"type": "catalogs"
}
}
}
}
}
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": "8205fd58-354b-4e29-b3db-c76e16862697",
"type": "catalog_fields",
"attributes": {
"catalog_id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-16T04:44:10.394-07:00",
"created_at": "2025-09-16T04:44:09.699-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "b3d9a5f5-fabd-4d8b-ad3c-ae22a0a80a9e",
"type": "catalogs"
}
}
}
}
}