Authorizations
Path Parameters
Body
application/vnd.api+json
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": "f2076e36-998e-4a54-b9ec-659bdbbeebb8",
"type": "catalog_fields",
"attributes": {
"catalog_id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-01T14:14:36.336-08:00",
"created_at": "2025-12-01T14:14:35.604-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"type": "catalogs"
}
}
}
}
}Show child attributes
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": "f2076e36-998e-4a54-b9ec-659bdbbeebb8",
"type": "catalog_fields",
"attributes": {
"catalog_id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-01T14:14:36.336-08:00",
"created_at": "2025-12-01T14:14:35.604-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "00d15a3b-f8ad-40ba-bb00-467beebc4b9a",
"type": "catalogs"
}
}
}
}
}