VB6 / Plivo REST API / List all TollFree Number
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
http.BasicAuth = 1
http.Login = "{{auth_id}}"
http.Password = "password"
Dim sbResponseBody As New ChilkatStringBuilder
success = http.QuickGetSb("https://api.plivo.com/v1/Account/<auth_id>/NumberPool/{numberpool_uuid}/Tollfree/",sbResponseBody)
If (success = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print "Response status code = " & http.LastStatus
Debug.Print sbResponseBody.GetAsString()
Curl Command
curl -X GET
-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/NumberPool/{numberpool_uuid}/Tollfree/
Postman Collection Item JSON
{
"name": "List all TollFree Number",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/NumberPool/{numberpool_uuid}/Tollfree/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"NumberPool",
"{numberpool_uuid}",
"Tollfree",
""
]
},
"description": "This API can be used to fetch a list of all tollfree numbers(presently only one tollfree) from the Number Pool based on number_pool_UUID specified in the resource URI. More information can be found [here](https://www.plivo.com/docs/sms/api/numberpool#list-all-tollfree)"
},
"response": [
{
"name": "List all TollFree Number",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/NumberPool/{numberpool_uuid}/Tollfree/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"NumberPool",
"{numberpool_uuid}",
"Tollfree",
""
]
}
},
"code": 200,
"_postman_previewlanguage": "json",
"header": [
],
"cookie": [
],
"body": "{\n \"api_id\": \"06c15d7c-7ed5-11ea-855f-0242ac110003\",\n \"meta\": {\n \"limit\": 20,\n \"next\": \"\",\n \"offset\": 0,\n \"previous\": \"\",\n \"total_count\": 1\n },\n \"objects\": [\n {\n \"account_phone_number_resource\": \"/v1/Account/{auth_id}/Number/{your_tollfree_number}/\",\n \"added_on\": \"2019-10-09T11:24:35.085797Z\",\n \"country_iso2\": \"US\",\n \"number\": \"{your_tollfree_number}\",\n \"number_pool_uuid\": \"{number_pool_uuid}\",\n \"service\": \"mms\",\n \"type\": \"tollfree\"\n }\n ]\n}"
}
]
}