POST
/
v1
/
catalogs
/
{catalog_id}
/
entities
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": "d776a230-740c-43bb-b9d9-84b493c36d89",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "66559879-9ae9-4cf1-8690-3cc27b0c1ff1",
      "name": "Test Item",
      "slug": "test-item",
      "position": 2,
      "deleted_at": null,
      "updated_at": "2025-04-20T05:18:28.586-07:00",
      "created_at": "2025-04-20T05:18:28.586-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "66559879-9ae9-4cf1-8690-3cc27b0c1ff1",
          "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

201
application/vnd.api+json
catalog_entity created
data
object
required