Get a list of Extensions. Create a new Extension. Patch an existing Extension resource. Get a single Extension resource.

Size: px
Start display at page:

Download "Get a list of Extensions. Create a new Extension. Patch an existing Extension resource. Get a single Extension resource."

Transcription

1 Last modified on Extension The Extension resources is a collection of Endpoints and Route Points that represent a User's Extension. The Extension Resource allows a User's registered devices to ring when an Extension is dialed. API Endpoint /api/v4/pbx/extension/ Methods NAME DESCRIPTION GET /api/v4/pbx/extension/ Get a list of Extensions. POST /api/v4/pbx/extension/ Create a new Extension. PATCH /api/v4/pbx/extension/ Patch an existing Extension resource. GET /api/v4/pbx/extension/{id}/ Get a single Extension resource. PUT /api/v4/pbx/extension/{id}/ Update an existing Extension. DELETE /api/v4/pbx/extension/{id}/ Delete an Extension. PATCH /api/v4/pbx/extension/{id}/ Patch a single Extension resource. Methods GET /api/v4/pbx/extension/

2 Get a list of Extensions. RETURNS 200 Successfully retrieved resource(s) EXAMPLE RESPONSE { "data": [ { "auto_record": false, "available_profiles": "/api/v4/pbx/available_profile_map/97/", "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/231/", "default_area_code": null, "description": null, "display_name": null, "ek": "100", "emergency_ani": null, "endpoints": [], "extension_id": 41, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/46/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/53/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/131/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 42, "modified": " T21:16:57Z", "new_messages": "/api/v4/pbx/folder/132/", "pin": "1234", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/42/", "saved_messages": "/api/v4/pbx/folder/133/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "100", "resource_uri": "/api/v4/pbx/extension/41/", "routepoints": [ "/api/v4/pbx/routepoint/177/"

3 } ], "timezone": "", "user": "/api/v4/access/user/19/" } ], "meta": { "limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 11 } data array Collection of objects returned by the API. DATA FIELDS auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension. channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_. description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls.

4 endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox. MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address.

5 enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource. saved_messages The Mailbox Folder to store saved voic Messages. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point. resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension.

6 meta object Information about the response. META FIELDS limit Maximum of objects per page in the response. next used to access the next page of the response. offset Number of objects skipped for this response. previous used to access the previous page of the response. total_count Total of objects accessible through this endpoint. POST /api/v4/pbx/extension/ Create a new Extension. EXAMPLE REQUEST { } "": "555", "user": "/api/v4/access/user/283/" FIELDS REQUIRED The Route Point. This value must be unique. Use one of the available GET requests to return an available Route Point. Request: GET /api/v4/pbx/routepoint/available/ Request: GET /api/v4/pbx/routepoint/available/? startswith={} user REQUIRED The User associated with the Extension. Use the User GET request to return a list of available Users.

7 Request: GET /api/v4/access/user/ RETURNS 201 Successfully created a new resource EXAMPLE RESPONSE { "auto_record": false, "available_profiles": "/api/v4/pbx/available_profile_map/221/", "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/108/", "default_area_code": null, "description": null, "display_name": null, "ek": "555", "emergency_ani": null, "endpoints": [], "extension_id": 43, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "555", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/253/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/69/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/208/", "ek": "555", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 48, "modified": " T21:16:57Z", "new_messages": "/api/v4/pbx/folder/236/", "pin": "1234", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/48/", "saved_messages": "/api/v4/pbx/folder/197/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "555",

8 } "resource_uri": "/api/v4/pbx/extension/43/", "routepoints": [ "/api/v4/pbx/routepoint/26/" ], "timezone": "", "user": "/api/v4/access/user/283/" auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension. channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_. description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls. endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID.

9 internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox. MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address. enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages.

10 pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource. saved_messages The Mailbox Folder to store saved voic Messages. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point. resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension. PATCH /api/v4/pbx/extension/ Patch an existing Extension resource. EXAMPLE REQUEST { "data": [ {

11 } ] } "description": "extension 100 has a description now", "resource_uri": "/api/v4/pbx/extension/44/", "user": "/api/v4/access/user/286/" FIELDS data REQUIRED Collection of objects returned by the API. array DATA FIELDS resource_uri REQUIRED The of the Extension resource you are patching. description The description of the Extension. user The User associated with the Extension. Use the User GET request to return a list of available Users. Request: GET /api/v4/access/user/ RETURNS 202 Successfully patched the resource EXAMPLE RESPONSE { "objects": [ { "auto_record": false, "available_profiles": "/api/v4/pbx/available_profile_map/31/", "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/220/", "default_area_code": null, "description": "extension 100 has a description now", "display_name": null, "ek": "100",

12 } ] } "emergency_ani": null, "endpoints": [], "extension_id": 44, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/51/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/58/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/152/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 47, "modified": " T21:16:57Z", "new_messages": "/api/v4/pbx/folder/153/", "pin": "1234", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/47/", "saved_messages": "/api/v4/pbx/folder/154/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "100", "resource_uri": "/api/v4/pbx/extension/44/", "routepoints": [ "/api/v4/pbx/routepoint/233/" ], "timezone": "", "user": "/api/v4/access/user/286/" objects OBJECTS FIELDS auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension.

13 channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_. description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls. endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox. MAILBOX FIELDS

14 available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address. enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource. saved_messages The Mailbox Folder to store saved voic Messages.

15 temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point. resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension. GET /api/v4/pbx/extension/{id}/ Get a single Extension resource. RETURNS 200 Successfully retrieved resource EXAMPLE RESPONSE { "auto_record": false, "available_profiles": "/api/v4/pbx/available_profile_map/205/", "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/37/", "default_area_code": null, "description": null, "display_name": null, "ek": "100", "emergency_ani": null, "endpoints": [], "extension_id": 45, "external_caller_id_": null, "internal_caller_id_name": null,

16 } "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/53/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/60/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/161/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 49, "modified": " T21:16:57Z", "new_messages": "/api/v4/pbx/folder/162/", "pin": "1234", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/49/", "saved_messages": "/api/v4/pbx/folder/163/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "100", "resource_uri": "/api/v4/pbx/extension/45/", "routepoints": [ "/api/v4/pbx/routepoint/96/" ], "timezone": "", "user": "/api/v4/access/user/138/" auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension. channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_.

17 description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls. endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox. MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played.

18 deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address. enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource. saved_messages The Mailbox Folder to store saved voic Messages. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point.

19 resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension. PUT /api/v4/pbx/extension/{id}/ Update an existing Extension. EXAMPLE REQUEST { "auto_record": true, "available_profiles": "/api/v4/pbx/available_profile_map/54/", "channel_data": null, "current_profile": "/api/v4/pbx/handling_profile/189/", "default_area_code": null, "display_name": "PUT Extension", "ek": "100", "emergency_ani": null, "endpoints": [], "extension_id": 46, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": false, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/55/", "default_greeting": "/api/v4/pbx/voice_recording/62/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/170/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 51, "new_messages": "/api/v4/pbx/folder/171/", "pin": "5678", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/51/", "saved_messages": "/api/v4/pbx/folder/172/",

20 } "temp_greeting_enabled": false }, "": "100", "resource_uri": "/api/v4/pbx/extension/46/", "timezone": "", "user": "/api/v4/access/user/289/" FIELDS auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap to associate with the Extension. Use the Available Profile Map GET request to return a list of Available Profile Maps. Request: GET /api/v4/pbx/available_profile_map/ channel_data Reserved for future use. JSON current_profile The Handling Profile currently being used for the Extension. Use the Handling Profile GET request to return a list of available Handling Profiles. Request: GET /api/v4/pbx/handling_profile/ default_area_code The default area code associated with the external_caller_id_. display_name The display name for the Extension. None ek A unique ID used by the Corvisa platform. UUID emergency_ani The caller ID to send with emergency calls.

21 endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. Use the Endpoint GET request to return a list of available Endpoints. Request: GET /api/v4/pbx/endpoint/ extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox Complete representation of the extension's Mailbox. JSON MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. default_greeting The Voice Recording to use as the default greeting. Use the Voice Recording GET request to return a list of available Voice Recordings. Request: GET /api/v4/pbx/voice_recording/

22 delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. This field is read-only. ek A unique ID used by the Corvisa platform. UUID _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address. enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. Use the Mailbox GET request to return a list of available Mailboxes Request: GET /api/v4/pbx/mailbox/ new_messages The Mailbox Folder to store new voic Messages. This field is readonly. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource.

23 saved_messages The Mailbox Folder to store saved voic Messages. This field is read-only. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. The Route Point. This value must be unique. Use one of the available GET requests to return an available Route Point. Request: GET /api/v4/pbx/routepoint/available/ Request: GET /api/v4/pbx/routepoint/available/? startswith={} resource_uri of the resource. timezone Time zone for the Extension. Use the Time Zone GET request to return a list of available Time Zones. user The User associated with the Extension. Use the User GET request to return a list of available Users. Request: GET /api/v4/access/user/ RETURNS 200 Successfully updated the resource EXAMPLE RESPONSE { "auto_record": true, "available_profiles": "/api/v4/pbx/available_profile_map/54/",

24 } "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/189/", "default_area_code": null, "description": null, "display_name": "PUT Extension", "ek": "100", "emergency_ani": null, "endpoints": [], "extension_id": 46, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/55/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/62/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/170/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 51, "modified": " T21:16:57Z", "new_messages": "/api/v4/pbx/folder/171/", "pin": "5678", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/51/", "saved_messages": "/api/v4/pbx/folder/172/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "100", "pk": "46", "resource_uri": "/api/v4/pbx/extension/46/", "routepoints": [ "/api/v4/pbx/routepoint/150/" ], "timezone": "", "user": "/api/v4/access/user/289/" auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension.

25 channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_. description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls. endpoints array List of Endpoints associated with the Extension. By default, these will all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox.

26 MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address. enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource.

27 saved_messages The Mailbox Folder to store saved voic Messages. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point. pk Numerical ID of the extension. The pk is primary key for the Extension. resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension. DELETE /api/v4/pbx/extension/{id}/ Delete an Extension. RETURNS 204 Successfully deleted resource(s) PATCH /api/v4/pbx/extension/{id}/ Patch a single Extension resource. EXAMPLE REQUEST { } "description": "extension 100 description was PATCHed", "user": "/api/v4/access/user/294/"

28 FIELDS description The description of the Extension. user The User associated with the Extension. Use the User GET request to return a list of available Users. Request: GET /api/v4/access/user/ RETURNS 202 Successfully patched the resource EXAMPLE RESPONSE { "auto_record": false, "available_profiles": "/api/v4/pbx/available_profile_map/139/", "channel_data": null, "created": " T21:16:57Z", "current_profile": "/api/v4/pbx/handling_profile/191/", "default_area_code": null, "description": "extension 100 description was PATCHed", "display_name": null, "ek": "100", "emergency_ani": null, "endpoints": [], "extension_id": 48, "external_caller_id_": null, "internal_caller_id_name": null, "internal_caller_id_": "100", "intl_calling": false, "is_extension_subtenant": true, "mailbox": { "available_greeting_map": "/api/v4/pbx/available_greeting_map/59/", "created": " T21:16:57Z", "default_greeting": "/api/v4/pbx/voice_recording/66/", "delete_vm": false, "deleted_messages": "/api/v4/pbx/folder/188/", "ek": "100", " _address": null, " _attachment": false, "enabled": true, "mailbox_id": 55, "modified": " T21:16:57Z",

29 } "new_messages": "/api/v4/pbx/folder/189/", "pin": "1234", "play_cid": true, "play_envelope": true, "resource_uri": "/api/v4/pbx/mailbox/55/", "saved_messages": "/api/v4/pbx/folder/190/", "temp_greeting_enabled": false }, "modified": " T21:16:57Z", "": "100", "resource_uri": "/api/v4/pbx/extension/48/", "routepoints": [ "/api/v4/pbx/routepoint/154/" ], "timezone": "", "user": "/api/v4/access/user/294/" auto_record Flag indicating whether all calls on the Extension are automatically recorded. available_profiles The AvailableProfileMap associated with the Extension. channel_data JSON Reserved for future use. created Date/time the resource was created. current_profile The Handling Profile currently being used for the Extension. default_area_code The default area code associated with the external_caller_id_. description The description of the Extension. display_name None The display name for the Extension. ek UUID A unique ID used by the Corvisa platform. emergency_ani The caller ID to send with emergency calls. endpoints array List of Endpoints associated with the Extension. By default, these will

30 array all be rung when the User's Extension is dialed. extension_id Unique ID for the Extension. external_caller_id_ The as it appears on the caller ID for the party receiving a call. internal_caller_id_name The name as it appears on the caller ID. internal_caller_id_ The as it appears on the caller ID for internal use. intl_calling Flag indicating whether international calls can be made from the Extension. is_extension_subtenant Flag indicating whether the currently authenticated User's active SubTenant matches the SubTenant associated with this Extension. mailbox JSON Complete representation of the extension's Mailbox. MAILBOX FIELDS available_greeting_map The Available Greeting Map that contains the greetings to play before a message is left. created Date/time Mailbox was created. default_greeting The Voice Recording to use as the default greeting. delete_vm Flag indicating whether voic Messages are deleted automatically after being played. deleted_messages The Mailbox Folder to store deleted voic Messages. ek UUID A unique ID used by the Corvisa platform. _address The address associated with the Mailbox. _attachment Flag indicating whether voic messages are sent as attachments to the associated address.

31 enabled Flag indicating whether the Mailbox is active. mailbox_id Unique ID of the Mailbox associated with the Extension. modified Date/time Mailbox was last modified. new_messages The Mailbox Folder to store new voic Messages. pin Security PIN used to open/unlock the Mailbox. play_cid Flag indicating whether Caller ID information is read before a voic message is played. play_envelope Flag indicating whether the created date and time is read before a voic message is played. resource_uri for the Mailbox resource. saved_messages The Mailbox Folder to store saved voic Messages. temp_greeting_enabled Flag indicating whether a temporary recorded greeting is used in place of the default greeting. modified Date/time the Extension was last modified. The Route Point. resource_uri of the resource. routepoints array List of all Route Points associated with the Extension. timezone Time zone for the Extension. user The User associated with the Extension.

32

Get a list of ACD Queues. Get a single ACD Queue resource. Get a single ACD Queue resource. Update an existing ACD Queue. Delete an ACD Queue.

Get a list of ACD Queues. Get a single ACD Queue resource. Get a single ACD Queue resource. Update an existing ACD Queue. Delete an ACD Queue. Last modified on 2016-01-05. ACD Queue An ACD Queue distributes waiting inbound calls in an ordered manner. API Endpoint /api/v4/acd/queue/ Methods NAME DESCRIPTION GET /api/v4/acd/queue/ Get a list of

More information

API Endpoint Methods NAME DESCRIPTION GET /api/v4/analytics/dashboard/ POST /api/v4/analytics/dashboard/ GET /api/v4/analytics/dashboard/{id}/ PUT

API Endpoint Methods NAME DESCRIPTION GET /api/v4/analytics/dashboard/ POST /api/v4/analytics/dashboard/ GET /api/v4/analytics/dashboard/{id}/ PUT Last on 2015-09-17. Dashboard A Dashboard is a grouping of analytics Widgets associated with a particular User. API Endpoint /api/v4/analytics/dashboard/ Methods NAME DESCRIPTION GET /api/v4/analytics/dashboard/

More information

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password CommPortal Go to http://myphone.bayring.com User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password Summary Click here to manage forwarding. Messages & Calls You can play

More information

MANAGED VOICE SOLUTIONS QUICK START GUIDE

MANAGED VOICE SOLUTIONS QUICK START GUIDE MANAGED VOICE SOLUTIONS QUICK START GUIDE WELCOME Welcome to Mediacom Business Managed Voice Solutions! This guide is intended to get you up-and-running for the basic features associated with the product.

More information

Feature Reference. Features: Call Forwarding Call Waiting Conference Calling Outbound Caller ID Block Last Call Return VoiceMail

Feature Reference. Features: Call Forwarding Call Waiting Conference Calling Outbound Caller ID Block Last Call Return VoiceMail Feature Reference This document will provide you with information on and how to use the following features of your phone service with Standard Broadband. Features: Call Forwarding Call Waiting Conference

More information

Welcome to your new ShoreTel 230 voice over IP telephone.

Welcome to your new ShoreTel 230 voice over IP telephone. ShoreTel 230 Table of Contents Preparing for your new phone:... 3 Set up:... 3 Record Multiple Greetings... 4 Retrieving Voice Mail... 5 ShoreTel Call Manager... 6 Call Manager Voice Mail... 8 Call Manager

More information

CALLPILOT VOICEMAIL USER GUIDE

CALLPILOT VOICEMAIL USER GUIDE CALLPILOT VOICEMAIL USER GUIDE SETTING UP YOUR MAILBOX First-Time Login o Dial 7002, the CallPilot voice mail access number o Enter your MAILBOX NUMBER then press o Enter your temporary password, (32 +

More information

PBX Administrator Guide

PBX Administrator Guide DDev8.10 1 PBX Administrator Guide URL for the site is https://hostedpbx.voxnetinc.com/login.php Enter you Username E mail address Enter your Password - Your extension The HOME page opens Here you can

More information

Telephone Instructions. Auto Dial

Telephone Instructions. Auto Dial Telephone Instructions Auto Dial The AUTO DIAL button is one that is programmed into a key. Some of you may have this button (or several buttons) programmed on the phone by the IS Dept. To store an AUTO

More information

Hosted Voice Quick Start Guide

Hosted Voice Quick Start Guide Hosted Voice Quick Start Guide EATEL 225-621-4100 Welcome Welcome to Hosted Voice from EATEL! This guide is intended to get you up and running for the basic features associated with the product. Pages

More information

Hosted Voice. Rely on us to take care of your business. YOUR QUICK START GUIDE TO THE LUS FIBER ALL BUSINESS HOSTED VOICE SYSTEM

Hosted Voice. Rely on us to take care of your business. YOUR QUICK START GUIDE TO THE LUS FIBER ALL BUSINESS HOSTED VOICE SYSTEM Hosted Voice YOUR QUICK START GUIDE TO THE LUS FIBER ALL BUSINESS HOSTED VOICE SYSTEM Rely on us to take care of your business. 1 2 Welcome. Welcome to ExecCONNECT from LUS Fiber! This guide is intended

More information

AVAYA Voicemail Messaging System

AVAYA Voicemail Messaging System The AVAYA Messaging System is similar to your previous voicemail system with a few added features. The phone will automatically route all incoming calls to your voicemail after the third ring or you may

More information

Overview. Table of Contents. Telephone... 1 State of Kansas Voice Mail System CISCO Unity 3 Quick Reference... 7

Overview. Table of Contents. Telephone... 1 State of Kansas Voice Mail System CISCO Unity 3 Quick Reference... 7 Overview This document introduces the State of Kansas Telephone and Voicemail Systems and gives instructions for the most commonly used features. Table of Contents Telephone... 1 State of Kansas Voice

More information

VIP (Traditional) Home Phone Calling Features

VIP (Traditional) Home Phone Calling Features VIP (Traditional) Home Phone Calling Features This document details each calling feature and its usage. Please note that this document applies only to our VIP Home Phone service for Kitchener-Waterloo,

More information

IPitomy User Guide Business Phones Conferencing Voice Mail

IPitomy User Guide Business Phones Conferencing Voice Mail IPitomy User Guide Business Phones Conferencing Voice Mail Using Your Telephone Your new telephone is a state of the art IP Telephone instrument. It is manufactured by Aastra, the manufacturers of Northern

More information

Dedicated DID and extension number to allow callers to reach the user through external phone numbers, other extensions, or auto-attendant.

Dedicated DID and extension number to allow callers to reach the user through external phone numbers, other extensions, or auto-attendant. Virtual Extension WorldSmart Virtual Extension is an extension that supports voicemail and call forwarding without using a handset or WorldSmart IP phone. With this feature, users can make or receive phone

More information

Business Phone Service. Calling Features & Instruction Guide

Business Phone Service. Calling Features & Instruction Guide Business Phone Service Calling Features & Instruction Guide HUNTING Hunting is a system that routes phone calls through your phone lines until an idle line is found. CALLER ID PER CALL BLOCKING (67) Pressing

More information

XPRESSIONS USER GUIDE

XPRESSIONS USER GUIDE XPRESSIONS USER GUIDE 1 WHAT IS XPRESSIONS? A voicemail system that enables access via the telephone or by PC/MAC. NOTE: Siemens no longer supports the current PhoneMail system. Xpressions is the replacement.

More information

Voice Mail Guide. One of your VTel neighbors. Real People, Real Value

Voice Mail Guide. One of your VTel neighbors. Real People, Real Value Vermont Telephone Company, Inc. Voice Mail Guide One of your VTel neighbors. Real People, Real Value prices are the best in Vermont. If you can find a better price, tell us and we ll beat it! Your Home

More information

PHONE SERVICE QUICK GUIDE PHONE SERVICE QUICK GUIDE

PHONE SERVICE QUICK GUIDE PHONE SERVICE QUICK GUIDE PHONE SERVICE 1 Your new United Phone service is powered by the area s only fiber network, so you ll enjoy crystal-clear call quality and a variety of advanced features. We ve created this handy guide

More information

PBXware End User Guide. 2003-2008 Bicom Systems

PBXware End User Guide. 2003-2008 Bicom Systems PBXware End User Guide Part I Introduction 3 1 Introduction PBXware End User Guide PBXware system is a scalable telephony solution featuring a range of traditional telephony and emerging VoIP technologies.

More information

Evolution PBX User Guide for SIP Generic Devices

Evolution PBX User Guide for SIP Generic Devices Evolution PBX User Guide for SIP Generic Devices Table of contents Introduction... 1 Voicemail... Using Voicemail... Voicemail Menu... Voicemail to Email... 3 Voicemail Web Interface... 4 Find Me Rules...

More information

WiLine Networks. Phone Feature Guide

WiLine Networks. Phone Feature Guide WiLine Networks Phone Feature Guide Copyright Disclaimer Trademarks and patents Copyright 2009, WiLine Networks All rights reserved. This document may not be copied or otherwise reproduced, in whole or

More information

XPRESSIONS WEB ASSISTANT QRG

XPRESSIONS WEB ASSISTANT QRG XPRESSIONS WEB ASSISTANT QRG The Xpressions Web Assistant is a user-friendly, web-based application for the individual configuration of your Xpressions mailbox. Clearly laid out Web pages allow each user

More information

Asterisk Voicemail User Reference

Asterisk Voicemail User Reference Asterisk Voicemail User Reference Chapter 1. An Overview The Asterisk PBX offers a highly flexible, highly capable voice mail system. Among the features that it offers are: Three different types of greetings.

More information

WTC Virtual PBX - Online Control Panel

WTC Virtual PBX - Online Control Panel WTC Virtual PBX - Online Control Panel This documentation has been designed to provide usage information about your Virtual PBX Service. Every effort has been made to make this documentation as accurate

More information

Using the Napa Valley College Phone, Email,

Using the Napa Valley College Phone, Email, Using the Napa Valley College Phone, Email, and Help Desk Systems Setting up your voice mail box and password Step 1 Press the Messages button to call Cisco Unity from your desk phone. Step 2 Enter the

More information

RiOffice Users Manual

RiOffice Users Manual RiOffice Users Manual Rio Networks 9/23/2009 Contents Available Services... 4 Core PBX Features... 4 Voicemail Features... 4 Call Center Features... 4 Call Features... 4 Using Your Phone... 5 Phone Layout...

More information

Home Phone Call Forward Guide

Home Phone Call Forward Guide Home Phone Call Forward Guide What is Call Forward - Immediate? Call Forward Immediate will always forward all calls to your phone number to a different phone number as soon as they arrive. It overrides

More information

Telephone Features can only be used with the following engin products: engin Voice Box and the engin Voice Box Series 2.

Telephone Features can only be used with the following engin products: engin Voice Box and the engin Voice Box Series 2. Features User Guide Telephone Features Telephone Features can only be used with the following engin products: engin Voice Box and the engin Voice Box Series 2. Turbo Dialling When making a call, you can

More information

Phone & Voicemail Instructions

Phone & Voicemail Instructions General Phone Tips To transfer a call to another line: 1. Press the Conf button 2. Dial the extension you wish to conference 3. Wait for the person to answer 4. Press Conf again to connect the two calls

More information

A QUICK GUIDE FOR TELEPHONE USE

A QUICK GUIDE FOR TELEPHONE USE TELEPHONE DIALING INFORMATION A QUICK GUIDE FOR TELEPHONE USE CALLING INSTRUCTIONS On Campus Calling: - Enter 4 digit extension - Campus Security dial 1421 Emergency: 1465 (on campus); 610/861-1465 (off-campus)

More information

SNAPCOMM USER GUIDE SETTING UP EMERGENCY E911. Powered by ConnectMevoice INTRODUCTION YOUR PHONE NUMBER AND ACCESS CODE

SNAPCOMM USER GUIDE SETTING UP EMERGENCY E911. Powered by ConnectMevoice INTRODUCTION YOUR PHONE NUMBER AND ACCESS CODE SNAPCOMM USER GUIDE Powered by ConnectMevoice INTRODUCTION Welcome to SnapComm phone system. You have just subscribed to the most powerful Hosted Internet Phone and unified messaging service on the market

More information

Voicemail. Advanced User s Guide. Version 2.0

Voicemail. Advanced User s Guide. Version 2.0 Advanced User s Guide Version 2.0 Contents Introduction to the Documentation... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Logging in to your ifbyphone Account... 3 Setting Up a Voice Mailbox...

More information

Cal Voicemail User Guide

Cal Voicemail User Guide UC Berkeley Cal Voicemail Telephone User Guide Fall 2009 Cal Voicemail User Guide Table of Contents Welcome to Cal Voicemail... 3 Getting Started... 4 Accessing Cal Voicemail... 5 Main Menu... 6 Personal

More information

Telephone Interface Quick Start Guide: Dial the local phone number from the list below. Enter your PIN/passcode.

Telephone Interface Quick Start Guide: Dial the local phone number from the list below. Enter your PIN/passcode. Virtual Phone It s Simple As 1 2 3 1 2 3 Telephone Interface Quick Start Guide: Dial the local phone number from the list below. Enter your PIN/passcode. Follow the voice prompts to navigate the functions.

More information

Web Portal User Guide

Web Portal User Guide Web Portal User Guide Fusion Hosted Voice Web Portal User Guide, Revision 2, September 2013 NCTC North Central 872 Highway 52 Bypass E Lafayette, TN 37083 615-666-2151 www.nctc.com Fusion Hosted Voice

More information

ShoreTel Communicator User Guide Professional

ShoreTel Communicator User Guide Professional ShoreTel Communicator User Guide Professional Using Communicator for Basic Call Handling Features and Functions Making Calls Type Name of desired party or enter Extension Number in Quick Dialer When populated

More information

VOICEMAIL FOR MOBILE USER GUIDE

VOICEMAIL FOR MOBILE USER GUIDE Contents: 2.0 Ways to access your Voicemail 2.1 Non Spark purchased Device Change the Voicemail number 2.2 Setting up for the first time 2.3 Change your greeting 3.0 Checking Your Messages 4.0 PIN Numbers

More information

CSULB Voice Mail. Setup and use your new voice mailbox

CSULB Voice Mail. Setup and use your new voice mailbox CSULB Voice Mail Setup and use your new voice mailbox 2 Welcome... 4 Setting Up Your Mailbox... 4 Logging In... 5 Working with Messages... 6 Quick message... 6 Check Messages... 6 Playing Messages... 6

More information

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT Navigate to https://portal.priorityonenet.com/ and log in to the PriorityOne portal account. If you would like your web browser to keep you

More information

To set up your mailbox and retrieve your messages, you will need the following information:

To set up your mailbox and retrieve your messages, you will need the following information: Welcome to Voice Mail! Cincinnati Bell s Voice Messaging services are the best way for you to keep in touch with family and friends. We re pleased you have chosen Voice Mail as your voice messaging solution.

More information

Fi Phone Quick Start Guide

Fi Phone Quick Start Guide Quick Start Guide Fi Phone Quick Start Guide This guide answers some frequently asked questions about how to get the most out of your home telephone service. If you find that you need help with your service,

More information

Telesystem Visual Voicemail ios/apple User Guide

Telesystem Visual Voicemail ios/apple User Guide Telesystem Visual Voicemail ios/apple User Guide Visual Voicemail - ios/apple The Visual Voicemail app allows you to listen/delete/read your messages 1 from your ios device. Before downloading the app

More information

Reference Guide Table of Contents

Reference Guide Table of Contents Reference Guide Table of Contents Overview and Quick Start 2 Log in and hear my messages 3 Skip, Forward, Save, or Delete a message 3 Change my PIN number (Passcode) 3 Change my Status while logged in

More information

GCI VOICE. Auto-Attendant Voicemail User Interface Onboarding Guide. gci.com/business 08.17.15

GCI VOICE. Auto-Attendant Voicemail User Interface Onboarding Guide. gci.com/business 08.17.15 GCI VOICE Auto-Attendant Voicemail User Interface Onboarding Guide gci.com/business 08.17.15 2 Note: Please do not attempt to setup or change your Auto-Attendant feature by calling in to the MediaBox.

More information

HELPFUL HINTS FOR VOIP PHONES

HELPFUL HINTS FOR VOIP PHONES HELPFUL HINTS FOR VOIP PHONES TO LEAVE A MESSAGE IN MAILBOX WITHOUT CALLING THE NUMBER ACCESS THE LINE (GET DIAL TONE) - PRESS STAR DIAL 5 DIGIT NUMBER TO TRANSFER A CALL WITHOUT ANNOUNCING WHOSE CALLING

More information

Ohio Department of Administrative Services John R. Kasich, Governor Robert Blair, Director

Ohio Department of Administrative Services John R. Kasich, Governor Robert Blair, Director State of Ohio Next Generation Telephony Solution Voice over Internet Protocol (VoIP) system phones 1. Question: Am I receiving a new phone number? Answer: No, you will keep your same phone number. 2. Question:

More information

NGT Hosted Digital Voice. User Guide

NGT Hosted Digital Voice. User Guide NGT Hosted Digital Voice User Guide December 2009 Getting Started Making Calls Using Your NGT Hosted Digital Voice service Domestic Dial as you normally would. You can also reference your local telephone

More information

Allworx Phone Functions

Allworx Phone Functions Voicemail Shortcuts The following shortcuts are available while listening to a voicemail message: *1 REPLY to this message. *6 Play the NEXT message. *2 FORWARD this message. *7 REWIND the message 10 seconds.

More information

Student Quick Reference Guide to Smith College Telephone & Voicemail Systems

Student Quick Reference Guide to Smith College Telephone & Voicemail Systems Student Quick Reference Guide to Smith College Telephone & Voicemail Systems Table of Contents Setting up Voicemail...2 - Accessing the Voicemail System - Changing your Password - Recording your Name -

More information

Business Phone System Administrator

Business Phone System Administrator Vonage Business Phone System Business Phone System Administrator User Guide Contents 1. Introduction 2. Logging into the online Portal 3. Personalising your extensions 4. Call Handling Introduction 5.

More information

Xpressions Web Assistant

Xpressions Web Assistant Xpressions Web Assistant Accessing your voicemail via the web Information Technology Services Outreach and Distance Learning Technologies 1 Copyright 2014 KSU Department of Information Technology Services

More information

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102.

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. With these instructions, you will: 1. Record your greeting. 2. Configure your 911 setting. 3. Learn how

More information

First Time Easy Set-Up

First Time Easy Set-Up First Time Easy Set-Up After log in, set up the following five options for optimum performance. 1 2 3 4 5 Change Your Password:...[#][7][1] Required to Log In as a Subscriber. Password length can be from

More information

SMALL BUSINESS USER GUIDE

SMALL BUSINESS USER GUIDE SMALL BUSINESS USER GUIDE TABLE OF CONTENTS Anonymous Call Rejection 4 Anywhere 5 Call Block 6 Call Forwarding 7 Call Logs 8 Call Return 8 Call Transfer 8 Call Waiting 9 Caller ID 9 Do Not Disturb 10 Find

More information

Enhanced Call Processor (ECP) User Guide

Enhanced Call Processor (ECP) User Guide Enhanced Call Processor (ECP) User Guide Overview The Enhanced Call Processing Mailbox (ECP), also referred to as Callers Menu, allows callers to route themselves to specific persons, departments, mailboxes

More information

Verizon VoIP Integrated Communications Package

Verizon VoIP Integrated Communications Package Verizon VoIP Integrated Communications Package Voice Mail User Guide For training/documentation, please visit us @ http://customertraining.verizonbusiness.com or call 1 800 622 1049 2009 Verizon. All Rights

More information

IPOne Phone System User Interface Guide

IPOne Phone System User Interface Guide IPOne Phone System User Interface Guide DoubleHorn Communications, LLC 1802 W. 6 th Street Austin, TX 78703 Main Office: 512-637-5200 Toll Free: 877-637-HORN (4676) DHC Support: Dial 611 IPOne Phone System

More information

Cbeyond FAQs TABLE OF CONTENTS

Cbeyond FAQs TABLE OF CONTENTS Cbeyond FAQs TABLE OF CONTENTS Call Forwarding Setup Instructions. 2 How to Engage Call Forwarding from Outside Office...... 3 How to Remove Call Forwarding from Outside Office 4 Call Forwarding Busy Setup

More information

SPARK CALL MINDER GUIDELINES. spark.co.nz

SPARK CALL MINDER GUIDELINES. spark.co.nz SPARK CALL MINDER GUIDELINES spark.co.nz How does it work? Whenever you can t answer calls your Call Minder will answer & callers can listen to your greeting and leave a message in your mailbox. Using

More information

Features GUIDE. Getting Started with NewWave BUSINESS ADVANTAGE. NewWave Business Solutions Center Contact us today with any questions! 1.866.460.

Features GUIDE. Getting Started with NewWave BUSINESS ADVANTAGE. NewWave Business Solutions Center Contact us today with any questions! 1.866.460. Features GUIDE NewWave Business Solutions Center Contact us today with any questions! newwavebusiness.com Getting Started with NewWave BUSINESS ADVANTAGE VIRTUAL FAX To Setup Virtual Fax: 2. Click Settings

More information

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users Getting Started Getting Started with Time Warner Cable Business Class Voice Manager A Guide for Administrators and Users Table of Contents Table of Contents... 2 How to Use This Guide... 3 Administrators...

More information

Fax Messages. You can double click a new message to show it on your computer or a right click on it will bring up more options as follows:

Fax Messages. You can double click a new message to show it on your computer or a right click on it will bring up more options as follows: Fax Messages If you have the Open Scape Fax Server installed you will be receiving faxes to your myportal. This tab shows you the fax messages you have received, the number you have received them from

More information

Outlook Integrated Toolbar Guide

Outlook Integrated Toolbar Guide Outlook Integrated Toolbar Guide Guide Description This guide will introduce you to the Outlook Toolbar that can be used to administer some of the advanced features of your phone. The toolbar gives convenient

More information

" (877)MY T4 TEL " " " " " " " (877)698-4835

 (877)MY T4 TEL        (877)698-4835 Display Features The display on your phone is interactive. As you use the phone the information will change and different features and functions will appear on the display. The 8 buttons above the display

More information

REINVENTING COMMUNICATIONS. User s Guide !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! User s Guide

REINVENTING COMMUNICATIONS. User s Guide !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! User s Guide " $%&'()*+),$(,$- %&).$,./0)11111111111111111111111111111111111111223 %++(--0,4$5(,./0)6(&7)8$%'222111111111111111111111111229,%/04%$0,4$5(7)8$%'111111111111111111111111111111122: 5);(7%4(1111111111111111111111111111111111111111

More information

SPEAK TELEPHONY MANUAL

SPEAK TELEPHONY MANUAL SPEAK TELEPHONY MANUAL telephony instruction manual contents Eftel speak has a great range of telephony options available to tailor your phone service to your needs and requirements. Eftel provides you

More information

Digital Phone @ Home Tutorial

Digital Phone @ Home Tutorial Digital Phone @ Home Tutorial 2 Table of Contents Quick Start Guide... 4 Making Phone Calls... 5 Voicemail Setup... 6 Setup instructions:... 6 To Check Messages:... 6 Quick Key Reference:... 6 Customer

More information

User Guide. Version 2.0 (Spring 2008)

User Guide. Version 2.0 (Spring 2008) User Guide Version 2.0 (Spring 2008) Contents Welcome to Versature... 3 Getting Help... 3 Calling Features... 4 Understanding Button Types... 4 Making a Call... 5 Redialing... 6 Parking a Call... 7 Conference

More information

Featuring the Vertical Xcelerator IP Phone System DESK PHONE USER GUIDE V1.5

Featuring the Vertical Xcelerator IP Phone System DESK PHONE USER GUIDE V1.5 Featuring the Vertical Xcelerator IP Phone System DESK PHONE USER GUIDE V1.5 For Service Purchased After May 1 st 2009 Table of Contents INTRODUCTION TO YOUR XCELERATOR DESK PHONE... 2 WELCOME... 2 XCELERATOR

More information

VIRTUAL RECEPTIONIST OVERVIEW. Cbeyond Virtual Receptionist Offers:

VIRTUAL RECEPTIONIST OVERVIEW. Cbeyond Virtual Receptionist Offers: VIRTUAL RECEPTIONIST OVERVIEW Cbeyond Virtual Receptionist Offers: MENU SETUP: Use Virtual Receptionist to create different main menus for when your company is open or closed. With Cbeyond's preconfigured

More information

VoIP Services User Guide

VoIP Services User Guide VoIP Services User Guide Table of Contents Overview of Services 3 Service Numbers 4 Line Services and Codes 5 Voice Mail 12 Overview of Services This guide is about Tera-Byte's VoIP services for residential

More information

Telesystem Visual Voicemail Android User Guide

Telesystem Visual Voicemail Android User Guide Telesystem Visual Voicemail Android User Guide Visual Voicemail - Android The Visual Voicemail app allows you to listen/delete/read your messages 1 from your Android device. Before downloading the app

More information

IP Office Technical Tip

IP Office Technical Tip IP Office Technical Tip Tip No: 215 Release Date: 7 November 2008 Region: GLOBAL Hunt Group Voicemail Targeting This Technical Tip explains the expected behavior of Hunt Group Voicemail operation with

More information

Polycom Soundpoint IP 330/331/335 Phone. Quick Reference Guide. www.i-evolve.com/voip

Polycom Soundpoint IP 330/331/335 Phone. Quick Reference Guide. www.i-evolve.com/voip Polycom Soundpoint IP 330/33/335 Phone Quick Reference Guide www.i-evolve.com/voip Table of Contents Phone Overview... Soft Key Features... How to Place a Call... Placing a Call from a Call List... Ending

More information

Contents 1. Setting up your Phone Phone Setup Phone Usage 2. User Portal 3. Softphone for your computer 4. Faxing

Contents 1. Setting up your Phone Phone Setup Phone Usage 2. User Portal 3. Softphone for your computer 4. Faxing User Guide 1 Contents 1. Setting up your Phone Phone Setup Phone setup instructions Recording Voicemail Greeting and Voicemail Menu Testing tools Phone Usage Call Transfer, Call Forwarding and Do Not Disturb

More information

Virtual Phone System User Guide v4.7

Virtual Phone System User Guide v4.7 Virtual Phone System User Guide v4.7 169 Saxony Road, Suite 212 Encinitas, CA 92024 Phone & Fax: (800) 477-1477 Welcome! Thank you for choosing FreedomVoice. This User Guide is designed to help you understand

More information

WTC Communications Hosted PBX User Guide

WTC Communications Hosted PBX User Guide WTC Communications Hosted PBX User Guide Version 7.13.1 Section Subject Page 3 Making Calls...5 3.1 Internal...5 3.2 External...5 3.3 Emergency Calls...5 3.4 Speaker Phone...5 3.5 Ending Calls...5 4 Answering

More information

VOICE MAIL USER GUIDE NEVER MISS A MESSAGE. windstream.com 1.877.481.9463

VOICE MAIL USER GUIDE NEVER MISS A MESSAGE. windstream.com 1.877.481.9463 VOICE MAIL USER GUIDE NEVER MISS A MESSAGE windstream.com 1.877.481.9463 Windstream is a registered service mark of Windstream Corporation. 2009 Windstream Corporation WS VM-METAS 01/09 Table Of Contents

More information

Quick Start. Guide. The area s ONLY 100% fiber optic network. epbfi.com

Quick Start. Guide. The area s ONLY 100% fiber optic network. epbfi.com Quick Start Guide The area s ONLY 100% fiber optic network epbfi.com Welcome to Fi Phone SM from EPB Fiber Optics SM With your new Fi Phone service, you ll enjoy crystal clear call quality and many great

More information

3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100

3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100 3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100 Your 3Com IP Phone must be configured to work in an IP network. Typically, your administrator assigns IP parameters, including an IP address, phone extension

More information

About Business Voicemail

About Business Voicemail About Business Voicemail About Hawaiian Telcom Business Voicemail Hawaiian Telcom Business Voicemail offers small, medium, and large businesses the benefits of a feature-rich voicemail system, 24 hours

More information

Getting Started with UM

Getting Started with UM Getting Started with UM PREFACE Welcome to Exchange Unified Messaging. This system will replace the legacy voice mail system and provide additional functionality. Our Exchange Servers will provide voice

More information

ACCESSING SINGLE NUMBER SERVICE FROM THE WEB PORTAL (FOR PHONE ADMINISTRATION SEE PAGE 6)

ACCESSING SINGLE NUMBER SERVICE FROM THE WEB PORTAL (FOR PHONE ADMINISTRATION SEE PAGE 6) Page 1 F o r A s s i s t a n c e C a l l 6 0 5. 5 9 4. 3 4 1 1 ACCESSING SINGLE NUMBER SERVICE FROM THE WEB PORTAL (FOR PHONE ADMINISTRATION SEE PAGE 6) After logging into the Web Portal, click on the

More information

Home Phone Features User Guide

Home Phone Features User Guide Home Phone Features User Guide You re sure when it s Sears Connect. TM Connect to the important things in life Sears Connect home phone service is a great way to stay connected to the important things

More information

Voice Mail with E-Forward Online User Guide

Voice Mail with E-Forward Online User Guide Voice Mail with E-Forward Online User Guide Check voice messages from any phone, your e-mail or online! Discover the ultimate convenience of managing your home and family life using Ponderosa Voice Mail

More information

Hosted PBX. Auto Attendant Setup Guide. Auto Attendant. Setup and Maintenance. Hosted PBX 3/11/15

Hosted PBX. Auto Attendant Setup Guide. Auto Attendant. Setup and Maintenance. Hosted PBX 3/11/15 Hosted PBX Auto Attendant Setup Guide Auto Attendant Setup and Maintenance Hosted PBX 3/11/15 TO EDIT YOUR AUTO ATTENDANT: Go to http://portal.hpbx.telepacific.net/ Enter your username and password. Click

More information

Cisco IP Phone User Guide

Cisco IP Phone User Guide Cisco IP Phone User Guide CONTENTS DISPLAY CONTRAST SETTINGS... 4 CHOOSE RING TONE... 4 SET RING VOLUME... 5 SET RECEIVER VOLUME... 5 SET SPEAKER VOLUME... 6 SETUP VOICE MAIL... 6 MAKE CALLS... 6 CALLS

More information

Desktop Reference Guide

Desktop Reference Guide Desktop Reference Guide 1 Copyright 2005 2009 IPitomy Communications, LLC www.ipitomy.com IP550 Telephone Using Your Telephone Your new telephone is a state of the art IP Telephone instrument. It is manufactured

More information

Cisco Unity Express 8.5 Voice-Mail System User s Guide for Advanced Features

Cisco Unity Express 8.5 Voice-Mail System User s Guide for Advanced Features Cisco Unity Express 8.5 Voice-Mail System User s Guide for Advanced Features First Published: January 18, 2011 This guide provides information about using some of the advanced voice-mail features of your

More information

Premium Digital Voice Solution. User Guide

Premium Digital Voice Solution. User Guide Premium Digital Voice Solution User Guide Table of Contents How to Log into Account Portal & Changing your Password 1 How to Download Toolbar 2 Utilizing Voice Mail 3 Feature Guide & How to Configure

More information

API Reference Guide. API Version 1. Copyright Platfora 2016

API Reference Guide. API Version 1. Copyright Platfora 2016 API Reference Guide API Version 1 Copyright Platfora 2016 Last Updated: 10:05 a.m. April 21, 2016 Contents Document Conventions... 5 Contact Platfora Support...6 Copyright Notices... 6 Chapter 1: Using

More information

All Rights Reserved. Release 5.5, October 2008

All Rights Reserved. Release 5.5, October 2008 All Rights Reserved The use, disclosure, modification, transfer or transmittal of this work for any purpose, in any form, or by any means, without the written permission from IDT/Net2Phone is strictly

More information

Address Book. Store all of your contacts in your online Address Book.

Address Book. Store all of your contacts in your online Address Book. Contents Address Book 4 Anonymous Call Rejection 5 Call Block 5 Call Forward 6-7 Call Logs 7 Call Return 7 Call Waiting 8 Caller ID 9 Do Not Disturb 10 Find Me 11 Outbound Caller ID Block 9 Selective Call

More information

Voice over IP Phone Feature Guide

Voice over IP Phone Feature Guide Voice over IP Phone Feature Guide STANDARD FEATURES Caller ID Caller ID displays an incoming caller s telephone number on your handset or softphone. There is no further action required as this feature

More information

HOME PHONE GET TO KNOW FEATURES THAT ANSWER THE CALL MANAGING VOICEMAIL WITH VOICEZONE

HOME PHONE GET TO KNOW FEATURES THAT ANSWER THE CALL MANAGING VOICEMAIL WITH VOICEZONE HOME PHONE GET TO KNOW FEATURES THAT ANSWER THE CALL MANAGING VOICEMAIL WITH VOICEZONE Just sign in to My Account and you can manage Voicemail and more, online and on your time. Activate Voicemail. Use

More information

Clear Choice Communications. Digital Voice Services User Guide

Clear Choice Communications. Digital Voice Services User Guide Clear Choice Communications Digital Voice Services User Guide 2 P a g e * Feature Access Codes *62 Access Voicemail *72 Call Forwarding Always Activation *73 Call Forwarding Always Deactivation *90 Call

More information

Business Phone Systems - User Guide Vonage Phone Systems Support

Business Phone Systems - User Guide Vonage Phone Systems Support Business Phone Systems - User Guide Vonage Phone Systems Support Call: 0203 021 1800 Email: support@vonagebusiness.co.uk 1 Contents 1. Introduction 2. Making Calls 3. Transferring Calls 4. Logging into

More information

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password CommPortal Go to http://myphone.bayring.com User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password Dashboard The dashboard provides a way to quickly access some of your

More information