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

# removeWhitelist

> Remove address from whitelist

Example values you can use to demo the API:

```json theme={null}
{
  "apiKey": "etherspot_public_key",
  "chainId": "11155111",
  "params": ["0x725404c8Eead111d9E6DFE118c535F43402a9511"]
}
```

Example response:

```json theme={null}
{
  "message": "Successfully removed whitelisted addresses with transaction Hash 0x0f87967a28230efd3624ddbd9b33887d1324887364576b90d9d6c0fe78fc0a67"
}
```


## OpenAPI

````yaml arka post /removeWhitelist
openapi: 3.0.3
info:
  title: Etherspot Arka Paymaster API
  version: 3.1.3
servers:
  - url: https://rpc.etherspot.io/paymaster
security: []
tags:
  - name: Arka
    externalDocs:
      description: Find out more about Arka
      url: https://etherspot.fyi/arka
externalDocs:
  description: Find out more about Arka
  url: https://etherspot.fyi/arka
paths:
  /removeWhitelist:
    post:
      tags:
        - Arka
      summary: removeWhitelist
      description: Remove address from whitelist
      operationId: removeWhitelist
      parameters:
        - in: query
          name: apiKey
          schema:
            type: string
          description: Arka API key
        - in: query
          name: chainId
          schema:
            type: string
          description: Chain ID
      requestBody:
        description: Remove address from whitelist
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/whitelist'
        required: true
      responses:
        '200':
          description: Successful operation
components:
  schemas:
    whitelist:
      type: object
      properties:
        params:
          type: array
          items:
            type: array
            items:
              type: string

````