Path parameters

idstringrequired

The ID of the post to remove.

Response

idstring

The unique identifier for this blog post.

objectstring

This will always contain post for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

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

blutui.project('one').admin.posts.remove('9a53098c-29df-4347-bfdb-49be0850db29')
Response
{
  "id": "9a53098c-29df-4347-bfdb-49be0850db29",
  "object": "post",
  "deleted": true
}

Was this helpful?