Skip to main content
POST
/
v1
/
bookmarks
Add Bookmark
curl --request POST \
  --url https://api.thefaithapp.com/v1/bookmarks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "devotional_id": 123
}
'
{
  "status": "<string>",
  "message": "<string>"
}

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.

Adds a devotional to the authenticated member’s bookmarks.

Example request

{
  "devotional_id": 1
}

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
devotional_id
number
required
Devotional ID to add to bookmarks.

Response fields

status
string
required
Indicates whether the bookmark mutation completed successfully.
message
string
required
Confirms whether the devotional was added now or was already bookmarked.

Example response

{
  "status": "Success",
  "message": "Devotional added to bookmarks"
}