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

# Delete Encrypted Key

> Disable an encrypted key for a Twilio account integration. See [Custom Twilio Integration](/tutorials/custom-twilio) for more information.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

<ParamField header="encrypted_key" type="string" required>
  The `encrypted_key` to delete.

  Learn more about BYOT [here](/tutorials/custom-twilio).
</ParamField>

### Response

<ResponseField body="status" type="string">
  The status of the request.

  * `success` - The encrypted key was successfully deleted.
  * `error` - There was an error deleting the encrypted key.
</ResponseField>

<ResponseField body="message" type="string">
  Special messages:

  * `Error deleting Twilio credentials` - The encrypted key could not be deleted or already has been deleted.
  * `Missing encrypted key` - The `encrypted_key` parameter is missing.
  * none - The encrypted key was successfully deleted.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success"
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
