Skip to main content
DELETE
/
v1
/
bookmarks
Remove Bookmark
curl --request DELETE \
  --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>"
}
Removes a devotional from 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 remove from bookmarks.

Response fields

status
string
required
Indicates whether the bookmark removal request completed successfully.
message
string
required
Confirms whether the devotional was removed now or was not previously bookmarked.

Example response

{
  "status": "Success",
  "message": "Devotional removed from bookmarks"
}