> ## Documentation Index
> Fetch the complete documentation index at: https://docs.embedads.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete User

> Removes access to the Advertiser's account through the admin portal. You can also do this manually on the Advertiser's Users page in the admin portal.

### Path Parameters

<ParamField path="advertiserID" type="number" required={true}>
  The advertiser ID.
</ParamField>

<ParamField path="email" type="string" required={true}>
  The email address of the user.

  <Note>
    Run encodeURIComponent(email) so that special characters like "+" are received properly.
  </Note>
</ParamField>

### Response

No content is returned.

<ResponseExample>
  ```json 204 theme={null}
  No content
  ```

  ```json 400 theme={null}
  {
      "error": "email is not associated with this advertiser"
  }
  ```

  ```json 500 theme={null}
  {
      "error": "Internal Server Error"
  }
  ```
</ResponseExample>
