Skip to main content
POST
/
projects
/
{project_id}
/
users
/
remove-by-email
Remove user by email
import requests

url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/users/remove-by-email/"

payload = { "email": "user@example.com" }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "error": "User not found"
}

Documentation Index

Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

project_id
string<uuid>
required

UUID of the project

Body

application/json
email
string<email>
required

Email address of the user to remove

Example:

"user@example.com"

Response

User successfully removed