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

# Delete User Notification

> Deletes a member-specific notification.

Deletes a member-specific notification.

## Request inputs

<ParamField header="X-API-Key" type="string" required>
  Your client API key from the dashboard (Settings page).
</ParamField>

<ParamField path="notificationId" type="string" required>
  Unique identifier of the notification to delete.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the notification delete request completed successfully.
</ResponseField>

<ResponseField name="message" type="string" required>
  Confirms that the targeted member notification was deleted.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Notification deleted"
}
```
