Path parameters

idstringrequired

The ID of the collection entry to remove.

Response

idstring

The unique identifier for this collection entry.

objectstring

This will always contain collection_entry for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

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

blutui.project('one').admin.entries.remove('collection-id', '0195b59f-2876-726e-9561-e692240c4d2d')
Response
{
  "id": "0195b59f-2876-726e-9561-e692240c4d2d",
  "object": "entry",
  "deleted": true
}

Was this helpful?