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

# Mark Notification As Read

> Marks a member notification as read.

Marks a member notification as read.

## 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 update.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the member notification was updated successfully.
</ResponseField>

<ResponseField name="message" type="string" required>
  Confirms that the targeted notification now counts as read.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Notification marked as read"
}
```
