Remove a member from the organization (soft delete).
DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}/users/{user_id}/delete
organization_id string required
Organization ID with org_ prefix.
user_id string required
User ID with usr_ prefix.
204 No Content on success.
- Cannot remove the organization owner
- Soft delete (data is not permanently deleted)
Requires authentication. User must be Admin or Owner.
Bash
- Bash
- Python
- Python
- JavaScript
curl -X DELETE \
"https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123/delete" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
(No response body)