GET
/
v1
/
catalog_entities
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/catalog_entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2d5f9aad-4365-4bff-ac11-681fcd2403f5",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "86b4d894-cf62-4482-aadb-a1e3f71cb2ad",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-03-22T22:58:18.709-07:00",
      "created_at": "2025-03-22T22:58:18.709-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "86b4d894-cf62-4482-aadb-a1e3f71cb2ad",
          "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

Was this page helpful?