Mark all notifications as read
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/ \
--header 'Authorization: Bearer <token>'{
"message": "Marked 5 notifications as read",
"count": 5
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Notifications
Mark all notifications as read
Mark all unread project notifications as read for the effective user.
Impersonation:
When using the X-Impersonate-Email header, marks all notifications as read for the target user.
POST
/
projects
/
{project_id}
/
notifications
/
mark-all-as-read
/
Mark all notifications as read
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/mark-all-as-read/ \
--header 'Authorization: Bearer <token>'{
"message": "Marked 5 notifications as read",
"count": 5
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Headers
Email of the user to impersonate. Requires CAN_IMPERSONATE_OTHER_USERS permission.
If the target user is not found or does not have access to the project, the request
proceeds as the authenticated user. Contact Clarifeye to enable this permission.
Path Parameters
UUID of the project