Loading
Cart Total
$0.00
-
Your shopping cart is empty
Loading
Hello! Log in Your Account
New customer? Start here
Caller ID
Storefronts
Customer Management
VoIP Bundle (Subscriptions)
SIP Account Management
Audio Management
Phone Numbers & Call Routing
Phone Calls & CDR Data
VoIP Phone Short Code
eFax Management
Voicemails & Mailboxes
Caller ID
SIP Trunks
Wallboard Statistics
VoIP Phone Provisioning
Call Queueing
Phone Books
VoIP Phone Speed Dial
Text (SMS) Messaging
Caller ID Requests track the progress of requests to use numbers not on an account as Caller IDs
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets a list of all active Caller ID Requests on an account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : [
{
"created_on" : "2023-06-07",
"documents" : [
{
"document_uuid" : "a21129ab-8168-4c97-b186-b96a047784df",
"rejected" : false,
"type" : "ownership",
"verified" : true
}
],
"number" : "+443301226000",
"status" : "needs_documents",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
}
],
"status_code" : 200,
"status_message" : "OK"
}
Gets a specific Caller ID Request
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Caller ID Request to be queried
200 Response
{
"result" : {
"created_on" : "2023-06-07",
"documents" : [
{
"document_uuid" : "a21129ab-8168-4c97-b186-b96a047784df",
"rejected" : false,
"type" : "ownership",
"verified" : true
}
],
"number" : "+443301226000",
"status" : "needs_documents",
"updated_on" : "2023-06-07",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Creates a new alternate Caller ID Request
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
POST body
Name
Type
Required
number
String
True
The number you wish to be able to use as a Caller ID in E164 format
document_uuid
String
True
The UUID of the account document to use for this verification type
rejected
boolean
True
Whether or not this document has been rejected
type
String
True
The type of verification this document is providing: 'ownership', 'identity', or 'address'
verified
boolean
True
Whether or not this document has been verified
JSON all-fields example:
{
"number" : "+443301226000"
}
201 Response
{
"result" : {
"created_on" : "2023-06-07",
"documents" : [
{
"document_uuid" : "a21129ab-8168-4c97-b186-b96a047784df",
"rejected" : false,
"type" : "ownership",
"verified" : true
}
],
"number" : "+443301226000",
"status" : "needs_documents",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
Deletes the specified Caller ID Request from an account
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Caller ID Request to be deleted
204 Response
{
"result" : {},
"status_code" : 204,
"status_message" : "No Content"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
Links an account document to the caller id request for verification. The Document types required are: 'ownership', 'identity', and 'address'
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the caller id request to update
POST body
Name
Type
Required
document_uuid
String
True
The UUID of the account document to use for this verification type
rejected
boolean
True
Whether or not this document has been rejected
type
String
True
The type of verification this document is providing: 'ownership', 'identity', or 'address'
verified
boolean
True
Whether or not this document has been verified
JSON all-fields example:
{
"document_uuid" : "a21129ab-8168-4c97-b186-b96a047784df",
"rejected" : false,
"type" : "ownership",
"verified" : true
}
201 Response
{
"result" : {
"document_uuid" : "a21129ab-8168-4c97-b186-b96a047784df",
"rejected" : false,
"type" : "ownership",
"verified" : true
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}