Speed Dial 8 Services¶
Dial a pre-defined number by dialing only one digit.
Speed Dial 8 allows you to set up to eight speed dial numbers that can be called with the push of a button. Enter the number as you would normally dial it and then just hit that number on your touch pad to call it. You can also program your speed dial using your phone and the star code for Speed Dial 8.
Display user’s Speed Dial 8¶
-
GET
/api/v1/tenants/
(string: tenant_id)/groups/
(string: group_id)/users/
(string: user_id)/services/speed_dial_8/
¶ Retrieve the settings of the Speed Dial 8 service of the user.
Example request:
GET /api/v1/tenants/foo/groups/foogroup/users/foouser/services/speed_dial_8/ HTTP/1.1 Host: example.com
Example response:
HTTP/1.1 200 OK Content-Type: "application/json" { "speedCodes": [ {"speedCode": "2", "phoneNumber": "", "description": ""}, {"speedCode": "3", "phoneNumber": "+32504987165", "description": "Test description"}, {"speedCode": "4", "phoneNumber": "", "description": ""}, {"speedCode": "5", "phoneNumber": "+32101654987", "description": ""}, {"speedCode": "6", "phoneNumber": "", "description": ""},, {"speedCode": "7", "phoneNumber": "", "description": ""},, {"speedCode": "8", "phoneNumber": "", "description": ""},, {"speedCode": "9", "phoneNumber": "", "description": ""}, ] }
- Response JSON Object:
speedCodes (array) – a list of speedCodes as defined in Speed Code attributes.
- Status Codes:
200 OK – no error
404 Not Found – the service is not assigned to the user
Update a user’s Speed Dial 8¶
-
PUT
/api/v1/tenants/
(string: tenant_id)/groups/
(string: group_id)/users/
(string: user_id)/services/speed_dial_8/
¶ Update the settings of the Speed Dial 8 service of the user.
Example request:
PUT /api/v1/tenants/foo/groups/foogroup/users/foouser/services/speed_dial_8/ HTTP/1.1 Host: example.com Content-Type: "application/json" { "speedCodes": [ {"speedCode": "3", "phoneNumber": "+32504987165", "description": "Test description"}, {"speedCode": "5", "phoneNumber": "+32101654987", "description": ""} ] }
- Request JSON Object:
speedCodes (array) – a list of speedCodes as defined in Speed Code attributes.
- Response JSON Object:
description (string) – the description (optional).
phoneNumber (string) – the phone number (required).
Example response:
- Response:
Similar to GET list method response.
- Status Codes:
200 OK – no error
404 Not Found – the service is not assigned to the user
400 Bad Request – error during the update