Skip to main content
POST
/
public
/
twilio-connector
/
inbox
/
application
Create an external application inbox
curl --request POST \
  --url https://web-api.clerk.chat/public/twilio-connector/inbox/application \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '
{
  "name": "My Voice Application",
  "accountSID": "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "authToken": "your_auth_token"
}
'
{
  "data": {
    "id": "00000000-0000-0000-0000-000000000000",
    "externalId": "APxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
    "name": "My Voice Application"
  }
}

Authorizations

apiKey
string
header
required

Body

application/json
name
string
required

Friendly name for the inbox and Twilio application

Example:

"My Voice Application"

accountSID
string

Twilio Account SID. Must be provided together with authToken. If neither is provided, the global Twilio account will be used.

Example:

"ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

authToken
string

Twilio Auth Token. Must be provided together with accountSID. If neither is provided, the global Twilio auth token will be used.

Example:

"your_auth_token"

Response

The created external inbox

data
object
required

Represents an external inbox resource