POST
/
v1
/
catalogs
curl --request POST \
  --url https://api.rootly.com/v1/catalogs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "catalogs",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "icon": "globe-alt",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "c4926ad1-dbc8-419c-bc9d-0a280f513b60",
    "type": "catalogs",
    "attributes": {
      "name": "Test",
      "slug": "test",
      "icon": "shapes",
      "description": null,
      "position": 2,
      "deleted_at": null,
      "updated_at": "2025-04-18T09:45:26.625-07:00",
      "created_at": "2025-04-18T09:45:26.625-07:00"
    },
    "relationships": {
      "fields": {
        "data": []
      },
      "entities": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

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