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": "56f10f30-5e98-404b-9493-c40cae30a338",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "e9b6482f-cb1c-477d-a798-6f7b6400742e",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "e9b6482f-cb1c-477d-a798-6f7b6400742e",
      "multiple": false,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-10-11T22:14:15.429-07:00",
      "created_at": "2025-10-11T22:14:15.429-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "e9b6482f-cb1c-477d-a798-6f7b6400742e",
          "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
I