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>"
}
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"
}