v1

latestOpenAPI 3.0.32026-08-067332206.6 KB
collections

Create a collection

Creates a collection in the matching Brandfolder.

post/brandfolders/{brandfolder_id}/collections

Request body

Example request

{
  "data": {
    "attributes": {
      "name": "My collection",
      "slug": "my-collection",
      "tagline": "My collection tag line"
    }
  }
}

Response

The new collection.

idstring required

Unique identifier for the resource instance.

type'collections' required

The type of the resource.

Example response

{
  "id": "oqgkkd-fr5iv4-hh142d",
  "attributes": {
    "name": "My collection",
    "tagline": "My collection tag line",
    "slug": "my-collection"
  }
}