Skip to main content
DELETE
/
v1
/
notifications
/
{notificationId}
Delete User Notification
curl --request DELETE \
  --url https://api.thefaithapp.com/v1/notifications/{notificationId} \
  --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.

Deletes a member-specific notification.

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 delete.

Response fields

status
string
required
Indicates whether the notification delete request completed successfully.
message
string
required
Confirms that the targeted member notification was deleted.

Example response

{
  "status": "Success",
  "message": "Notification deleted"
}