Retrieve a list of soft-deleted user accounts. Admin-only endpoint for user management and audit purposes.
GEThttps://api.aitronos.com/v1/user/deleted
Returns users where is_deleted=true. Useful for admin operations, audit trails, and potential account recovery.
Access Control: Admin-only endpoint. Requires Owner or Admin role in at least one organization.
skip integer optional · Defaults to 0
Number of records to skip for pagination.
limit integer optional · Defaults to 100
Maximum number of records to return. Maximum value is 100.
Returns a JSON response indicating success or failure.
Bash
- Bash
- Python
- JavaScript
curl -X GET "https://api.aitronos.com/v1/user/deleted?skip=0&limit=10" \
-H "X-API-Key: $FREDDY_API_KEY"