User
Delete Users
API Documentation
Health
Files
Web Scrape
Data Source
SharePoint
GitHub
Chunks / Embeddings
Retrieval
User
Delete Users
Delete one or many users, whom are denoted as “customer_ids”.
POST
/
delete_users
curl --request POST \
--url https://api.carbon.ai/delete_users \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"customer_ids": [
"<string>"
]
}'
{
"success": true
}
Authorizations
Bearer <token>
, corresponds to API keys.
Body
application/json
Response
200
application/json
Successful Response
curl --request POST \
--url https://api.carbon.ai/delete_users \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"customer_ids": [
"<string>"
]
}'
{
"success": true
}