POST
/
management
/
voice
/
provider-accounts
cURL
curl --request POST \
  --url https://api.comm.com/api/management/voice/provider-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "provider": "vapi",
  "username": "<string>",
  "concurrency_limit": 2,
  "is_personal": true,
  "api_key": "<string>"
}'
{
  "data": {
    "id": "<string>",
    "username": "<string>",
    "name": "<string>",
    "meta": [
      "<any>"
    ],
    "is_active": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z",
    "concurrency_limit": 123,
    "is_personal": "<string>",
    "numbers_count": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
provider
enum<string>
required
Available options:
vapi,
millis,
eleven_labs
username
string
required
api_key
string
required
concurrency_limit
integer | null
Required range: x >= 1
is_personal
boolean

Response

VoiceProviderResource

data
object
required