Skip to main content
POST
/
v1
/
catalogs
/
{catalog_id}
/
entities
Creates a Catalog Entity
curl --request POST \
  --url https://api.rootly.com/v1/catalogs/{catalog_id}/entities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "catalog_entities",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "cdedacd3-b73c-47db-a84c-9f6dcbc2afcc",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "207b97b7-a564-4ef1-a4aa-d93c79c26f14",
      "name": "Test Item",
      "slug": "test-item",
      "position": 2,
      "deleted_at": null,
      "updated_at": "2025-10-17T17:27:30.900-07:00",
      "created_at": "2025-10-17T17:27:30.900-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "207b97b7-a564-4ef1-a4aa-d93c79c26f14",
          "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

catalog_id
string
required

Body

application/vnd.api+json
data
object
required

Response

catalog_entity created

data
object
required
I