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": "ac663dea-fc82-45b5-bb02-3fb9e860008e",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "5d3127f4-8324-4168-946f-1b647034f2d9",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-13T09:19:56.459-08:00",
"created_at": "2026-02-13T09:19:55.010-08:00",
"catalog_id": "5d3127f4-8324-4168-946f-1b647034f2d9"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "5d3127f4-8324-4168-946f-1b647034f2d9"
}
}
}
}
}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": "ac663dea-fc82-45b5-bb02-3fb9e860008e",
"type": "catalog_fields",
"attributes": {
"name": "Updated name",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "5d3127f4-8324-4168-946f-1b647034f2d9",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-13T09:19:56.459-08:00",
"created_at": "2026-02-13T09:19:55.010-08:00",
"catalog_id": "5d3127f4-8324-4168-946f-1b647034f2d9"
},
"relationships": {
"catalog": {
"data": {
"type": "catalogs",
"id": "5d3127f4-8324-4168-946f-1b647034f2d9"
}
}
}
}
}