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

# Remove from Blacklist

> Remove multiple phone numbers from your organization's blacklist to resume contact with them.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication (e.g., `Bearer <your_token>`).
</ParamField>

### Body Parameters

The request body should be a non-empty array of objects.

<ParamField body="[]" type="array[]" required>
  List of numbers to remove from the blacklist.

  <Expandable title="item properties">
    <ParamField body="number" type="string" required>
      The phone number to be removed from the blacklist.
    </ParamField>
  </Expandable>
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url https://api.agents.timepay.ai/api/v1/blacklist/bulk/remove \
    --header 'Authorization: Bearer <your_token>' \
    --header 'Content-Type: application/json' \
    --data '[
    {
      "number": "8249587552"
    },
    {
      "number": "9920967932"
    }
  ]'
  ```
</RequestExample>

### Response

<ResponseField name="success" type="boolean">
  Indicates whether the request was successful.
</ResponseField>

<ResponseField name="message" type="string">
  A descriptive message about the result.
</ResponseField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "success": true,
    "message": "Numbers has been removed from blacklist"
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "success": false,
    "message": "Request body must be a non-empty array."
  }
  ```

  ```json 400 Missing Number theme={null}
  {
    "success": false,
    "message": "Each item must contain a 'number' field."
  }
  ```

  ```json 500 Server Error theme={null}
  {
    "success": false,
    "message": "An unexpected server error occurred."
  }
  ```
</ResponseExample>
