Remove blog

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

Remove a blog from a project.

Path parameters

idstringrequired

The ID of the blog to remove.

Response

import Blutui from 'blutui'

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

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

The unique identifier for this blog.

objectstring

This will always contain blog for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on