> ## 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.

# Upload Inbound Phone Numbers

> Add inbound numbers to Luly from your own Twilio account. 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 of the Twilio account you want to upload numbers from.
</ParamField>

### Body

<ParamField body="numbers" type="string[]" required={true}>
  <Accordion title="Properties" />
</ParamField>

### Response

<ResponseField name="status" type="string">
  Can be `success` or `error`.
</ResponseField>

<ResponseField name="message" type="string">
  A message saying whether the insertion succeeded, or a helpful message describing why it failed.
</ResponseField>

<ResponseField name="inserted" type="array">
  An array of phone numbers that were successfully inserted.

  Any phone numbers that failed to be inserted will not be included in this array - for example if they are already in your account or not associated with the sepcified Twilio account.
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "message": "Successfully deleted number from database: +15555555555"
  }

  ```
</ResponseExample>
