Path parameters

idstringrequired

The ID of the blog to remove.

Response

idstring

The unique identifier for this blog.

objectstring

This will always contain blog for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

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

blutui.project('one').admin.blogs.remove('99e2addd-e8d2-45c3-8184-fbcae8a6cf29')
Response
{
  "id": "99e2addd-e8d2-45c3-8184-fbcae8a6cf29",
  "object": "blog",
  "deleted": true
}

Was this helpful?