> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luly.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 [Enterprise Twilio Integration](https://docs.luly.ai/enterprise-features/custom-twilio) for more information.

### Headers

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

<ParamField header="encrypted_key" type="string" required={true}>
  The encrypted\_key to delete.
</ParamField>

### Response

<ResponseField>
  The single-use session token that can be sent to the client.
  The status of the request.

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

<ResponseField>
  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 Response
  {
      "status": "success"
  }

  ```
</ResponseExample>
