Delete all read notifications
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/delete-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/delete-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/delete-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
Delete all read notifications
Delete all read project notifications for the effective user.
Impersonation:
When using the X-Impersonate-Email header, deletes all read notifications for the target user.
POST
/
projects
/
{project_id}
/
notifications
/
delete-read
/
Delete all read notifications
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/notifications/delete-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/delete-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/delete-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