Remove post

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

Remove a blog post from a project.

Path parameters

idstringrequired

The ID of the post to remove.

Response

import Blutui from 'blutui'

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

blutui.project('one').admin.posts.remove('9a53098c-29df-4347-bfdb-49be0850db29')
JSON Response
{
  "id": "9a53098c-29df-4347-bfdb-49be0850db29",
  "object": "post",
  "deleted": true
}
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.

Last updated on