Skip to content

Remove Blog Bookmark

DELETE
/api/v1/posts/{id}/bookmark

Authorizations

SessionAuth

Session ID for authenticated requests

Type
API Key (header: X-Session-ID)

Parameters

Path Parameters

id*
Type
string
Required

Responses

Bookmark removed

Playground

Server
Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

Remove a bookmark from a blog post.

Auth: session.

Parameters

NameInTypeRequiredDescription
idpathstringYesPost id

Request Body

None.

Response 200

json
{
	"data": { "post_id": "post_2", "bookmarked": false },
	"user_context": { "authenticated": true },
	"meta": {}
}

Response Errors

  • 401 missing session
  • 404 bookmark not found

Notes

  • Use this to un-save a post from a reading list.
  • Usually paired with the bookmark route in UI toggles.