Skip to content
Last updated

Remove a member from the organization (soft delete).

DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}/users/{user_id}/delete

Path Parameters

organization_id string required

Organization ID with org_ prefix.

user_id string required

User ID with usr_ prefix.

Returns

204 No Content on success.

Notes

  • Cannot remove the organization owner
  • Soft delete (data is not permanently deleted)

Authentication

Requires authentication. User must be Admin or Owner.

Bash
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)