Body parameters
The name of the collection.
The unique handle for this collection.
Response
The unique identifier for this collection.
This will always contain collection
for this endpoint.
The name of this collection.
The unique handle for this collection.
The list of fields for this collection.
The unique identifier for the collection field.
The name of the collection field.
The user friendly label of the collection field.
The type of the collection field.
The default value of the collection field.
The description of what the collection field is for.
Whether the collection field is required or not.
The order of the collection field.
The list of links for this collection.
The list of parent links for this collection.
The date and time when the collection was deleted.
The date and time when the collection was created.
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',
})
{
"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"
}