API for managing speed dial entries.
Speed dials allow callers who are using the Debit Module to enter 1 to 3 digits as speed dial entries that are associated with E.164 numbers. This facilitates callers entering an abbreviated number sequence that references a full E.164 number to help speed up the calling to various destinations.
GET /accounts/{AccountId}/services/speeddial
Return a list of speed dial entries for the specified account.
GET /accounts/services/speeddial/{LookupValue}
Return a specific speed dial entry by Id.
POST /accounts/services/speeddial
Create a new speed dial entry.
PUT /accounts/services/speeddial
Update an existing speed dial entry.
DELETE /accounts/services/speed dial/{Id}
Delete the specified speed dial entry.
Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Updating a Resource
Deleting a Resource
{
"SpeedId": 0,
"Account": "",
"Entry": "",
"Number": "",
"Description": ""
}
This table is used to allow callers who are using the Debit Module to enter 1 to 3 digits as speed dial entries that are associated with E.164 numbers. This table facilitates callers entering an abbreviated number sequence that references a full E.164 number to help speed up the calling to various destinations
Field Name | Type | Size | Description |
---|---|---|---|
SPEED_ID | bigint | 8 | Primary key. |
ACCOUNT | varchar | 40 | Primary key. Account number to assign this speed dial entry to. Use an asterisk to allow the speed dial to apply to all accounts. |
ENTRY | varchar | 20 | Primary key. A unique numerical assignment per account that can be dialed by the caller to reference the NUMBER specified below. |
NUMBER | varchar | 40 | The E.164 number to be associated with the speed dial number entered in the ENTRY field. |
DESCRIPTION | varchar | 100 | Descriptionfor this entry. |