Remove link

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

Remove a link from a collection in a project.

Path parameters

idstringrequired

The ID of the collection link to remove.

Response

import Blutui from 'blutui'

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

blutui.project('one').admin.links.remove('collection-id', '0195b611-161e-733c-9372-72985cffa043')
JSON Response
{
  "id": "0195b611-161e-733c-9372-72985cffa043",
  "object": "link",
  "deleted": true
}
idstring

The unique identifier for this collection link.

objectstring

This will always contain collection_link for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on