> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thefaithapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Bookmark

> Removes a devotional from the authenticated member's bookmarks.

Removes a devotional from the authenticated member's bookmarks.

## Example request

```json theme={null}
{
  "devotional_id": 1
}
```

## Request inputs

<ParamField header="X-API-Key" type="string" required>
  Your client API key from the dashboard (Settings page).
</ParamField>

<ParamField body="devotional_id" type="number" required>
  Devotional ID to remove from bookmarks.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the bookmark removal request completed successfully.
</ResponseField>

<ResponseField name="message" type="string" required>
  Confirms whether the devotional was removed now or was not previously bookmarked.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Devotional removed from bookmarks"
}
```
