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": "5e8b8c88-a4a1-4e1c-88e5-a9cf9dc796c1",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-07-21T23:14:28.821-07:00",
      "created_at": "2025-07-21T23:14:28.821-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
          "type": "catalogs"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: catalog

Available options:
catalog

Response

200
application/vnd.api+json

catalog_field found

The response is of type object.