Skip to main content
PATCH
/
v1
/
notifications
/
{notificationId}
/
read
Mark Notification As Read
curl --request PATCH \
  --url https://api.thefaithapp.com/v1/notifications/{notificationId}/read \
  --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 a member notification as read.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
notificationId
string
required
Unique identifier of the notification to update.

Response fields

status
string
required
Indicates whether the member notification was updated successfully.
message
string
required
Confirms that the targeted notification now counts as read.

Example response

{
  "status": "Success",
  "message": "Notification marked as read"
}