> ## 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.

# Add Bookmark

> Adds a devotional to the authenticated member's bookmarks.

Adds a devotional to 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 add to bookmarks.
</ParamField>

## Response fields

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

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

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Devotional added to bookmarks"
}
```
