Skip to main content
GET
/
v1
/
catalog_fields
/
{id}
Retrieves a Catalog Field
curl --request GET \
  --url https://api.rootly.com/v1/catalog_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1a74a19e-1cd7-49c8-99c9-12374216a235",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "b2f2ba1f-e4ee-49ff-8c56-d711126b5a21",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "b2f2ba1f-e4ee-49ff-8c56-d711126b5a21",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-12-11T14:42:18.868-08:00",
      "created_at": "2025-12-11T14:42:18.868-08:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "b2f2ba1f-e4ee-49ff-8c56-d711126b5a21",
          "type": "catalogs"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Query Parameters

include
enum<string>

comma separated if needed. eg: catalog

Available options:
catalog

Response

catalog_field found

data
object
required