Body parameters

namestringrequired

The name of the collection.

handlestringrequired

The unique handle for this collection.

Response

idstring

The unique identifier for this collection.

objectstring

This will always contain collection for this endpoint.

namestring

The name of this collection.

handlestring

The unique handle for this collection.

fieldsarray

The list of fields for this collection.

fields.*.idstring

The unique identifier for the collection field.

fields.*.namestring

The name of the collection field.

fields.*.labelstring

The user friendly label of the collection field.

fields.*.typestring

The type of the collection field.

fields.*.default_valuestring | null

The default value of the collection field.

fields.*.help_textstring | null

The description of what the collection field is for.

fields.*.requiredboolean

Whether the collection field is required or not.

fields.*.ordernumber

The order of the collection field.

linksarray

The list of links for this collection.

parent_linksarray

The list of parent links for this collection.

deleted_atstring | null

The date and time when the collection was deleted.

created_atstring

The date and time when the collection was created.

updated_atstring

The date and time when the collection was updated.

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.collections.create({
  name: 'Products',
  handle: 'products',
})
Response
{
  "id": "0195b544-bc46-7223-851d-3ce553b11ae6",
  "object": "collection",
  "name": "Products",
  "handle": "products",
  "fields": [
    {
      "id": "0195b56e-a8d7-736a-b1f6-93fefa597bb4",
      "name": "title",
      "label": "Title",
      "type": "text",
      "default_value": null,
      "help_text": null,
      "required": true,
      "order": 0,
      "max": "255"
    }
  ],
  "links": [],
  "parent_links": [],
  "deleted_at": null,
  "created_at": "2023-08-14T16:49:46+12:00",
  "updated_at": "2023-08-14T16:49:46+12:00"
}

Was this helpful?