Path parameters

idstringrequired

The ID of the collection to remove.

Response

idstring

The unique identifier for this collection.

objectstring

This will always contain collection for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

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

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

Was this helpful?