## Remove a member `DELETE https://getkollek.com/api/account/members/{member}` Remove someone from the account. Their user is deleted and their API keys stop working. What they catalogued stays in the account. An account always keeps at least one owner, so removing the last one is refused. **Permissions:** Owners only. Editors and viewers get a 404 response. ### Path parameters - `member` (integer, required): The ID of the member. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/account/members/2 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.