Toll Free Offnet
Place a toll free offnet order if you have your own RespOrg
GET or POST Request
Send us a GET or POST request with your key and the numbers (in the URI as key or as http password)
This will immediately attempt to order numbers. You can send the dids field as either a comma list of the numbers OR a json object of the numbers
Argument
Required
Type
dids
yes
int
callflow
no
int
faxflow
no
int
curl -X POST https://v1.api19.com/dids/tfoffnet/order \
-d 'dids=3038821111,3038883333' \
-d 'callflow=444' \
-d 'key=your-api-key'
OR
curl -X POST https://v1.api19.com/dids/tfoffnet/order \
-d 'dids=[3038821111,3038883333]' \
-d 'callflow=444' \
-d 'key=your-api-key'
Responses
{
"status": "ok",
"success": {
"8003332222": "yes"
},
"errors": {
"8883332222": "8883332222 is already in your orders",
"3334443333": "3334443333 is not a tollfree number"
}
}
Last updated