GET
/
v1
/
catalog_entities
/
{id}
curl --request GET \
  --url 'https://api.rootly.com/v1/catalog_entities/%7Bid%7D?include=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "data": {
    "id": "0ff5f77c-8254-421f-9de6-8d916fd98858",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "b2c10923-e17f-4722-8915-651b638d128b",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-13T11:59:15.669-07:00",
      "created_at": "2025-03-13T11:59:15.669-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "b2c10923-e17f-4722-8915-651b638d128b",
          "type": "catalogs"
        }
      },
      "properties": {
        "data": []
      }
    }
  }
}

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,properties

Available options:
catalog,
properties

Response

200
application/vnd.api+json
catalog_entity found
data
object
required