Skip to main content
PATCH
/
v1
/
notifications
/
read-all
Mark All Notifications As Read
curl --request PATCH \
  --url https://api.thefaithapp.com/v1/notifications/read-all \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "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.

Marks every member notification as read for the authenticated member.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).

Response fields

status
string
required
Indicates whether the inbox update completed successfully.
message
string
required
Confirms that all unread member notifications were marked as read.

Example response

{
  "status": "Success",
  "message": "All notifications marked as read"
}