Batch Call

Play one voice for multiple(up to 100) phone numbers

POST https://api.bitel.rest/api/v1/voice/campaign

Request Body

Name
Type
Description

phoneNumbers

string

target phone number. example: 0912*******

voiceId

string

the identifier of the voice(refer to Upload File Page)

retryCount

number

how many times the call is retried if the number if either busy or doesn't answer(default = 1)

serverId

string

Identifier of dialer from which the voice will be originated

{
  "result": "d9478050b8794fca8018742d0556dc85",
  "error": null
}

Sample Request

{
  "phoneNumbers": [
    "0912*******"
  ],
  "voiceId": "08e815cbcd724386805103ac0d45e4c2",
  "retryCount": 3
}

Error Codes

Code

Description

InvalidRequest

Indicates that the submitted request is invalid

InvalidServer

Indicates that the selected server id is invalid

Make sure to store the campaignId returned from the response

Last updated