Admin APICollections

Remove collection

DELETE{handle}.blutui.com/admin/api/collections/{id}

Remove a collection from a project.

Path parameters

idstringrequired

The ID of the collection to remove.

Response

import Blutui from 'blutui'

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

blutui.project('one').admin.collections.remove('0195b544-bc46-7223-851d-3ce553b11ae6')
JSON Response
{
  "id": "0195b544-bc46-7223-851d-3ce553b11ae6",
  "object": "collection",
  "deleted": true
}
idstring

The unique identifier for this collection.

objectstring

This will always contain collection for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on