import plivo

client = plivo.RestClient('<Auth>', '<Token>')

resonse = client.verify_callerids.get_verified_caller_id("+91XXXXXXXXXX")

print(response)
{
  "alias": "US Mainland",
  "api_id": "79ba7d96-94bb-4b91-a288-419213fa9239",
  "country": "US",
  "created_at": "2024-02-09T03:52:22.880098Z",
  "modified_at": "2024-02-09T03:52:22.880098Z",
  "phone_number": "+12025551XXX",
  "subaccount": "",
  "verification_uuid": "f87836bd-f3c0-41bb-9498-125e6faaa4d4"
}

The method lets you retrieve details of a verified caller ID.

API Endpoint

GET
https://api.plivo.com/v1/Account/{auth_id}/VerifiedCallerId/{phone_number}

Atrributes

No arguments need to be passed.

import plivo

client = plivo.RestClient('<Auth>', '<Token>')

resonse = client.verify_callerids.get_verified_caller_id("+91XXXXXXXXXX")

print(response)
{
  "alias": "US Mainland",
  "api_id": "79ba7d96-94bb-4b91-a288-419213fa9239",
  "country": "US",
  "created_at": "2024-02-09T03:52:22.880098Z",
  "modified_at": "2024-02-09T03:52:22.880098Z",
  "phone_number": "+12025551XXX",
  "subaccount": "",
  "verification_uuid": "f87836bd-f3c0-41bb-9498-125e6faaa4d4"
}