Response
Call
Multiparty call
- Overview
- The Multiparty object
- Activate a multiparty call
- Retrieve a multiparty call
- Retrieve all multiparty calls
- End a multiparty call
- Participants
- Multiparty call recording
Conference
Audio Stream
Verified Caller ID
Endpoint
Verified Caller ID
Verify Caller ID
Copy
Ask AI
import plivo
client = plivo.RestClient('<Auth>', '<Token>')
response = client.verify_callerids.verify_caller_id(verification_uuid="68dea750-5a76-485d-8ac3-5cf5996ba2fb",otp="123456")
print(response)
Copy
Ask AI
{
"alias": "US Mainland",
"api_id": "870e2ded-58b0-41bc-8c1c-ba00c6a90741",
"channel": "",
"country": "US",
"created_at": "2024-02-09T03:52:22.880097813Z",
"phone_number": "+12025551XXX",
"verification_uuid": "f87836bd-f3c0-41bb-9498-125e6faaa4d4"
}
Verify Caller ID
This method allows you to verify the OTP for a number that has been initiated for verification.
API Endpoint
POST
Copy
Ask AI
https://api.plivo.com/v1/Account/{auth_id}/VerifiedCallerId/Verification/{verification_uuid}/
Atrributes
otp | The otp generated for the corresponding verification_uuid |
Copy
Ask AI
import plivo
client = plivo.RestClient('<Auth>', '<Token>')
response = client.verify_callerids.verify_caller_id(verification_uuid="68dea750-5a76-485d-8ac3-5cf5996ba2fb",otp="123456")
print(response)
Copy
Ask AI
{
"alias": "US Mainland",
"api_id": "870e2ded-58b0-41bc-8c1c-ba00c6a90741",
"channel": "",
"country": "US",
"created_at": "2024-02-09T03:52:22.880097813Z",
"phone_number": "+12025551XXX",
"verification_uuid": "f87836bd-f3c0-41bb-9498-125e6faaa4d4"
}
Copy
Ask AI
import plivo
client = plivo.RestClient('<Auth>', '<Token>')
response = client.verify_callerids.verify_caller_id(verification_uuid="68dea750-5a76-485d-8ac3-5cf5996ba2fb",otp="123456")
print(response)
Copy
Ask AI
{
"alias": "US Mainland",
"api_id": "870e2ded-58b0-41bc-8c1c-ba00c6a90741",
"channel": "",
"country": "US",
"created_at": "2024-02-09T03:52:22.880097813Z",
"phone_number": "+12025551XXX",
"verification_uuid": "f87836bd-f3c0-41bb-9498-125e6faaa4d4"
}
Assistant
Responses are generated using AI and may contain mistakes.