Loading
Cart Total
$0.00
-
Your shopping cart is empty
Loading
Hello! Log in Your Account
New customer? Start here
VoIP Phone Speed Dial
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
A Speed Dial is a code that can used to quickly dial numbers that are called on a regular basis
Become a ResellerFilter:
* You will be charged every time this command is run.
Gets a list of all the active speed dials on an account
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
200 Response
{
"result" : [
{
"created_on" : "2023-03-23",
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000",
"updated_on" : "2023-03-23",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
}
],
"status_code" : 200,
"status_message" : "OK"
}
Gets the details for a specific speed dial on an account
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Speed Dial to be queried
200 Response
{
"result" : {
"created_on" : "2023-03-23",
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000",
"updated_on" : "2023-03-23",
"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 Speed Dial
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
POST body
Name
Type
Required
dial_code
String
True
The dial code used to trigger this speed dial
display_name
String
True
An optional nickname for this speed dial
target_number
String
True
The number to dial when this code is used
JSON all-fields example:
{
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000"
}
201 Response
{
"result" : {
"created_on" : "2023-03-23",
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 201,
"status_message" : "Created"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
409 Response
{
"result" : {},
"status_code" : 409,
"status_message" : "Conflict"
}
Updates the specified speed dial
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Speed Dial to be updated
PUT body
Name
Type
Required
dial_code
String
True
The dial code used to trigger this speed dial
display_name
String
True
An optional nickname for this speed dial
target_number
String
True
The number to dial when this code is used
JSON all-fields example:
{
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000"
}
200 Response
{
"result" : {
"created_on" : "2023-03-23",
"dial_code" : "123",
"display_name" : "Yay Support Line",
"target_number" : "+443301226000",
"updated_on" : "2023-03-23",
"uuid" : "31347d42-00bd-44a5-9b5c-20dc4197a2f6"
},
"status_code" : 200,
"status_message" : "OK"
}
400 Response
{
"result" : {},
"status_code" : 400,
"status_message" : "Bad Request"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}
409 Response
{
"result" : {},
"status_code" : 409,
"status_message" : "Conflict"
}
Upload a CSV to bulk create new speed dial codes. Any conflicting codes will be overwritten.
Back to top
Request Details
Response Details
This command has no URL/Query String parameters
Deletes the specified Speed Dial
Back to top
Request Details
Response Details
URL and Query String Parameters
Name
Type
Required
uuid
String
True
The UUID of the Speed Dial to be deleted
204 Response
{
"result" : {},
"status_code" : 204,
"status_message" : "No Content"
}
404 Response
{
"result" : {},
"status_code" : 404,
"status_message" : "Not Found"
}