Chilkat Online Tools

TCL / Plivo REST API / List all TollFree Number

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "{{auth_id}}"
CkHttp_put_Password $http "password"

set sbResponseBody [new_CkStringBuilder]

set success [CkHttp_QuickGetSb $http "https://api.plivo.com/v1/Account/<auth_id>/NumberPool/{numberpool_uuid}/Tollfree/" $sbResponseBody]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    exit
}

puts "Response status code = [CkHttp_get_LastStatus $http]"
puts [CkStringBuilder_getAsString $sbResponseBody]

delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody

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}"
    }
  ]
}