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.
|
|
|
- Jody Dickerson
- 10 years ago
- Views:
Transcription
1 Last modified on 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 ACD Queues. POST /api/v4/acd/queue/ Get a single ACD Queue resource. GET /api/v4/acd/queue/{id}/ Get a single ACD Queue resource. PUT /api/v4/acd/queue/{id}/ Update an existing ACD Queue. DELETE /api/v4/acd/queue/{id}/ Delete an ACD Queue. PATCH /api/v4/acd/queue/{id}/ Patch an ACD Queue resource. Methods GET /api/v4/acd/queue/ Get a list of ACD Queues. RETURNS 200
2 Successfully retrieved resource(s) EXAMPLE RESPONSE { "data": [ { "acdqueue_id": 72, "agent_max_attempts": 8, "agent_timeout": 3, "agents": [ "/api/v4/access/user/188/" ], "allow_join_on_empty": false, "announcement_playlist": "/api/v4/acd/announcement_playlist/17/", "announcement_playlist_enabled": false, "auto_answer": false, "auto_record": true, "created": " T21:17:04Z", "display_name": "Bob", "disposition_set": "/api/v4/acd/disposition_set/63/", "ek": "5555", "empty_queue_failover_destination": "/api/v4/pbx/routepoint/129/", "enable_call_disposition": false, "enable_call_notes": true, "enable_call_wrap": true, "external_data": null, "external_label": null, "groups": [ "/api/v4/access/short_group/163/" ], "hold_playlist": "/api/v4/acd/hold_playlist/22/", "hold_playlist_enabled": true, "max_attempts": 1, "max_attempts_failover_destination": "/api/v4/pbx/routepoint/31/", "max_size": 0, "max_size_failover_destination": "/api/v4/pbx/routepoint/104/", "max_wait_failover_destination": "/api/v4/pbx/routepoint/190/", "max_wait_time": 18, "modified": " T21:17:04Z", "_is_did": true, "priority": 8, "queue_": "5555", "resource_uri": "/api/v4/acd/queue/91/", "retry_time": 3, "ring_strategy": 1, "route_point": "/api/v4/pbx/routepoint/209/", "screen_pop_hidden": true, "screen_pop_method": 0, "screen_pop_url": "", "skill_based": false, "skip_busy": 0, "sla": 17,
3 } "subtenant": "/api/v4/backbone/subtenant/76/", "wrap_allow_extend": false, "wrap_extension_max": 3, "wrap_time": 11, "wrap_time_extension": 6 } ], "meta": { "limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 4 } data array Collection of objects returned by the API. DATA FIELDS acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited. agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. announcement_playlist AcdAnnouncementPlaylist for the destination where an announcement playlist can be linked. announcement_playlist_enabled Flag indicating whether ACD Queue should use a custom announcement playlist. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded.
4 created timestamp Date/time the ACD Queue was created. display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue. ek UUID A unique ID used by the Corvisa platform. empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to false. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data JSON Data added to events related to this queue. external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. hold_playlist ACD Hold Playlist for the destination where an hold playlist can be linked. hold_playlist_enabled Flag indicating whether ACD Queue should use a custom hold playlist. max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met.
5 max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. max_wait_failover_destination the maximum wait time has been met. max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified timestamp Date/time the ACD Queue was last modified. _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed. screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the
6 ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue. wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time. 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.
7 POST /api/v4/acd/queue/ Get a single ACD Queue resource. EXAMPLE REQUEST { } "agent_max_attempts": 5, "agent_timeout": 15, "agents": [ "/api/v4/access/user/477/" ], "allow_join_on_empty": true, "auto_answer": false, "auto_record": false, "display_name": "Example Queue", "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "groups": [], "max_attempts": 0, "max_size": 0, "max_wait_failover_destination": "/api/v4/pbx/routepoint/379/", "max_wait_time": 60, "_is_did": false, "priority": 1, "queue_": "6235", "retry_time": 10, "ring_strategy": 0, "skill_based": false, "sla": 15, "wrap_allow_extend": false, "wrap_time": 60 FIELDS display_name REQUIRED Display name for the ACD Queue. queue_ REQUIRED Phone for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited.
8 agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. Use the User GET request to return a list of available Users. Request: GET /api/v4/access/user/ allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. groups array List of Groups whose agents are agents in the ACD Queue. When a Group is added to the ACD Queue, the Users in the Group are also added to the ACD Queue. When a Group is removed from an ACD Queue, the Users in the Group are also removed from the ACD Queue. Use the Groups GET request to return a list of available Groups. Request: GET /api/v4/access/group/ max_attempts Maximum connection attempts per call before failing over. 0 is unlimited.
9 max_size Maximum of queued calls. 0 is unlimited. max_wait_failover_destination the maximum wait time has been met. Use the Route Point GET request to return a list of available Route Points. Request: GET /api/v4/pbx/routepoint/ max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. sla Maximum acceptable time in seconds for calls to remain queued. wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive
10 another call. RETURNS 201 Successfully created a new resource EXAMPLE RESPONSE { "acdqueue_id": 204, "agent_max_attempts": 5, "agent_timeout": 15, "agents": [ "/api/v4/access/user/477/" ], "allow_join_on_empty": true, "announcement_playlist": null, "announcement_playlist_enabled": false, "auto_answer": false, "auto_record": false, "created": " T21:17:04Z", "display_name": "Example Queue", "disposition_set": null, "ek": "6235", "empty_queue_failover_destination": null, "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "external_data": null, "external_label": null, "groups": [], "hold_playlist": null, "hold_playlist_enabled": false, "max_attempts": 0, "max_attempts_failover_destination": null, "max_size": 0, "max_size_failover_destination": null, "max_wait_failover_destination": "/api/v4/pbx/routepoint/379/", "max_wait_time": 60, "modified": " T21:17:04Z", "_is_did": false, "priority": 1, "queue_": "6235", "resource_uri": "/api/v4/acd/queue/204/", "retry_time": 10, "ring_strategy": 0, "route_point": "/api/v4/pbx/routepoint/382/", "screen_pop_hidden": null, "screen_pop_method": 0, "screen_pop_url": null,
11 } "skill_based": false, "skip_busy": 0, "sla": 15, "subtenant": "/api/v4/backbone/subtenant/207/", "wrap_allow_extend": false, "wrap_extension_max": 0, "wrap_time": 60, "wrap_time_extension": 0 acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited. agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. announcement_playlist AcdAnnouncementPlaylist for the destination where an announcement playlist can be linked. announcement_playlist_enabled Flag indicating whether ACD Queue should use a custom announcement playlist. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. created timestamp Date/time the ACD Queue was created. display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue.
12 ek UUID A unique ID used by the Corvisa platform. empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to false. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data JSON Data added to events related to this queue. external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. hold_playlist ACD Hold Playlist for the destination where an hold playlist can be linked. hold_playlist_enabled Flag indicating whether ACD Queue should use a custom hold playlist. max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met. max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. max_wait_failover_destination the maximum wait time has been met.
13 max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified timestamp Date/time the ACD Queue was last modified. _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed. screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue.
14 wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time. GET /api/v4/acd/queue/{id}/ Get a single ACD Queue resource. RETURNS 200 Successfully retrieved resource(s) EXAMPLE RESPONSE { "acdqueue_id": 205, "agent_max_attempts": 0, "agent_timeout": 0, "agents": [], "allow_join_on_empty": false, "announcement_playlist": null, "announcement_playlist_enabled": false, "auto_answer": false, "auto_record": false, "created": " T21:17:04Z", "display_name": "Some ACD Queue", "disposition_set": "/api/v4/acd/disposition_set/78/", "ek": "100", "empty_queue_failover_destination": null, "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "external_data": null, "external_label": null,
15 } "groups": [], "hold_playlist": null, "hold_playlist_enabled": false, "max_attempts": 0, "max_attempts_failover_destination": "/api/v4/pbx/routepoint/385/", "max_size": 0, "max_size_failover_destination": "/api/v4/pbx/routepoint/385/", "max_wait_failover_destination": "/api/v4/pbx/routepoint/385/", "max_wait_time": 0, "modified": " T21:17:04Z", "_is_did": false, "priority": 0, "queue_": "4444", "resource_uri": "/api/v4/acd/queue/205/", "retry_time": 0, "ring_strategy": 0, "route_point": "/api/v4/pbx/routepoint/384/", "screen_pop_hidden": null, "screen_pop_method": 0, "screen_pop_url": "", "skill_based": false, "skip_busy": 0, "sla": 0, "subtenant": "/api/v4/backbone/subtenant/208/", "wrap_allow_extend": false, "wrap_extension_max": 0, "wrap_time": 0, "wrap_time_extension": 0 acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited. agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. announcement_playlist AcdAnnouncementPlaylist for the destination where an announcement playlist can be linked.
16 announcement_playlist_enabled Flag indicating whether ACD Queue should use a custom announcement playlist. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. created timestamp Date/time the ACD Queue was created. display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue. ek UUID A unique ID used by the Corvisa platform. empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to false. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data JSON Data added to events related to this queue. external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. hold_playlist ACD Hold Playlist for the destination where an hold playlist can be linked. hold_playlist_enabled Flag indicating whether ACD Queue should use a custom hold playlist.
17 max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met. max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. max_wait_failover_destination the maximum wait time has been met. max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified timestamp Date/time the ACD Queue was last modified. _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed.
18 screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue. wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time. PUT /api/v4/acd/queue/{id}/ Update an existing ACD Queue. EXAMPLE REQUEST { "acdqueue_id": 208, "agent_max_attempts": 0, "agent_timeout": 0, "agents": [], "allow_join_on_empty": false,
19 } "auto_answer": false, "auto_record": false, "created": null, "display_name": "PUT Queue", "disposition_set": "/api/v4/acd/disposition_set/79/", "ek": "100", "empty_queue_failover_destination": null, "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "external_data": null, "external_label": null, "groups": [], "max_attempts": 0, "max_attempts_failover_destination": "/api/v4/pbx/routepoint/390/", "max_size": 0, "max_size_failover_destination": "/api/v4/pbx/routepoint/390/", "max_wait_failover_destination": "/api/v4/pbx/routepoint/390/", "max_wait_time": 0, "modified": null, "_is_did": false, "priority": 0, "queue_": "4444", "resource_uri": "/api/v4/acd/queue/208/", "retry_time": 0, "ring_strategy": 0, "route_point": "/api/v4/pbx/routepoint/389/", "screen_pop_hidden": null, "screen_pop_method": 0, "screen_pop_url": "", "skill_based": false, "skip_busy": 0, "sla": 0, "subtenant": "/api/v4/backbone/subtenant/209/", "wrap_allow_extend": false, "wrap_extension_max": 0, "wrap_time": 0, "wrap_time_extension": 0 FIELDS acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited.
20 agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. Use the User GET request to return a list of available Users. Request: GET /api/v4/access/user/ allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. created Date/time the ACD Queue was created. timestamp display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue. ek A unique ID used by the Corvisa platform. UUID empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to false. Use the Route Point GET request to return a list of available Route Points. Request: GET /api/v4/pbx/routepoint/
21 enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data Data added to events related to this queue. JSON external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. When a Group is added to the ACD Queue, the Users in the Group are also added to the ACD Queue. When a Group is removed from an ACD Queue, the Users in the Group are also removed from the ACD Queue. Use the Groups GET request to return a list of available Groups. Request: GET /api/v4/access/group/ max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met. max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. Use the Route Point GET request to return a list of available Route Points.
22 Request: GET /api/v4/pbx/routepoint/ max_wait_failover_destination the maximum wait time has been met. Use the Route Point GET request to return a list of available Route Points. Request: GET /api/v4/pbx/routepoint/ max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified Date/time the ACD Queue was last modified. timestamp _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. Use the Route Point GET request to return a list of available Route Points. Request: GET /api/v4/pbx/routepoint/
23 screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed. screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue. wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time.
24 RETURNS 200 Successfully updated the resource EXAMPLE RESPONSE { "acdqueue_id": 208, "agent_max_attempts": 0, "agent_timeout": 0, "agents": [], "allow_join_on_empty": false, "announcement_playlist": null, "announcement_playlist_enabled": false, "auto_answer": false, "auto_record": false, "created": " T21:17:04Z", "display_name": "PUT Queue", "disposition_set": "/api/v4/acd/disposition_set/79/", "ek": "4444", "empty_queue_failover_destination": null, "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "external_data": null, "external_label": null, "groups": [], "hold_playlist": null, "hold_playlist_enabled": false, "max_attempts": 0, "max_attempts_failover_destination": "/api/v4/pbx/routepoint/390/", "max_size": 0, "max_size_failover_destination": "/api/v4/pbx/routepoint/390/", "max_wait_failover_destination": "/api/v4/pbx/routepoint/390/", "max_wait_time": 0, "modified": " T21:17:04Z", "_is_did": false, "pk": "208", "priority": 0, "queue_": "4444", "resource_uri": "/api/v4/acd/queue/208/", "retry_time": 0, "ring_strategy": 0, "route_point": "/api/v4/pbx/routepoint/393/", "screen_pop_hidden": null, "screen_pop_method": 0, "screen_pop_url": "", "skill_based": false, "skip_busy": 0, "sla": 0, "subtenant": "/api/v4/backbone/subtenant/209/", "wrap_allow_extend": false,
25 } "wrap_extension_max": 0, "wrap_time": 0, "wrap_time_extension": 0 acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited. agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. announcement_playlist AcdAnnouncementPlaylist for the destination where an announcement playlist can be linked. announcement_playlist_enabled Flag indicating whether ACD Queue should use a custom announcement playlist. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. created timestamp Date/time the ACD Queue was created. display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue. ek UUID A unique ID used by the Corvisa platform. empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to
26 false. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call. enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data JSON Data added to events related to this queue. external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. hold_playlist ACD Hold Playlist for the destination where an hold playlist can be linked. hold_playlist_enabled Flag indicating whether ACD Queue should use a custom hold playlist. max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met. max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. max_wait_failover_destination the maximum wait time has been met. max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified timestamp Date/time the ACD Queue was last modified.
27 _is_did Flag indicating whether the phone for the ACD Queue is a DID. pk Unique ID for the ACD Queue. priority The priority of this ACD Queue, used to determine which call will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed. screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue.
28 wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0. wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time. DELETE /api/v4/acd/queue/{id}/ Delete an ACD Queue. RETURNS 204 Successfully deleted resource(s) PATCH /api/v4/acd/queue/{id}/ Patch an ACD Queue resource. EXAMPLE REQUEST { } "max_attempts": 3 FIELDS max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. RETURNS 202 Successfully retrieved resource(s)
29 EXAMPLE RESPONSE { } "acdqueue_id": 214, "agent_max_attempts": 0, "agent_timeout": 0, "agents": [], "allow_join_on_empty": false, "announcement_playlist": null, "announcement_playlist_enabled": false, "auto_answer": false, "auto_record": false, "created": " T21:17:04Z", "display_name": "Some ACD Queue", "disposition_set": "/api/v4/acd/disposition_set/81/", "ek": "4444", "empty_queue_failover_destination": null, "enable_call_disposition": false, "enable_call_notes": false, "enable_call_wrap": false, "external_data": null, "external_label": null, "groups": [], "hold_playlist": null, "hold_playlist_enabled": false, "max_attempts": 3, "max_attempts_failover_destination": "/api/v4/pbx/routepoint/401/", "max_size": 0, "max_size_failover_destination": "/api/v4/pbx/routepoint/401/", "max_wait_failover_destination": "/api/v4/pbx/routepoint/401/", "max_wait_time": 0, "modified": " T21:17:04Z", "_is_did": false, "priority": 0, "queue_": "4444", "resource_uri": "/api/v4/acd/queue/214/", "retry_time": 0, "ring_strategy": 0, "route_point": "/api/v4/pbx/routepoint/20/", "screen_pop_hidden": null, "screen_pop_method": 0, "screen_pop_url": "", "skill_based": false, "skip_busy": 0, "sla": 0, "subtenant": "/api/v4/backbone/subtenant/211/", "wrap_allow_extend": false, "wrap_extension_max": 0, "wrap_time": 0, "wrap_time_extension": 0
30 acdqueue_id Unique ID for the ACD Queue. agent_max_attempts Maximum of times an agent will be attempted before being logged out. A value of zero is unlimited. agent_timeout Maximum time (in seconds) that an agent's phone will ring before the call is sent to a failover destination. agents array List of Users who are agents in the ACD Queue. allow_join_on_empty Flag indicating whether callers can enter the ACD Queue when no agents are logged in. announcement_playlist AcdAnnouncementPlaylist for the destination where an announcement playlist can be linked. announcement_playlist_enabled Flag indicating whether ACD Queue should use a custom announcement playlist. auto_answer Flag indicating whether calls will be answered automatically when directed to an agent. auto_record Flag indicating whether calls to this ACD Queue are automatically recorded. created timestamp Date/time the ACD Queue was created. display_name Display name for the ACD Queue. disposition_set The Disposition Set associated with the ACD Queue. ek UUID A unique ID used by the Corvisa platform. empty_queue_failover_destination Route Point for the destination where calls are sent if the ACD Queue is empty and allow_join_on_empty is set to false. enable_call_disposition Flag indicating whether agents can select a call Disposition when wrapping a call.
31 enable_call_notes Flag indicating whether agents can enter notes when wrapping a call. enable_call_wrap Flag indicating whether agents have time to wrap their calls before becoming available to receive another call. external_data JSON Data added to events related to this queue. external_label Label added to events related to this queue. groups array List of Groups whose agents are agents in the ACD Queue. hold_playlist ACD Hold Playlist for the destination where an hold playlist can be linked. hold_playlist_enabled Flag indicating whether ACD Queue should use a custom hold playlist. max_attempts Maximum connection attempts per call before failing over. 0 is unlimited. max_attempts_failover_destination the maximum of attempts to reach an agent has been met. max_size Maximum of queued calls. 0 is unlimited. max_size_failover_destination the maximum of calls are waiting in the ACD Queue. max_wait_failover_destination the maximum wait time has been met. max_wait_time The of seconds a call can remain queued before being sent to max_size_failover_destination. 0 is unlimited. modified timestamp Date/time the ACD Queue was last modified. _is_did Flag indicating whether the phone for the ACD Queue is a DID. priority The priority of this ACD Queue, used to determine which call
32 will be sent to an agent who is logged in to multiple ACD Queues at once. queue_ Phone for the ACD Queue. resource_uri for the ACD Queue resource. retry_time Delay time (in seconds) between attempting agents. ring_strategy Number indicating the strategy for routing calls to agents within the ACD Queue. Options are 0: Round Robin, 1: Linear, 2: Least Recent, 3: Longest Idle. route_point Route Point for the ACD Queue. screen_pop_hidden Nullable flag describing if an incoming call popup is suppressed. screen_pop_method HTTP method (0: GET, 1: POST) for screen pop requests. screen_pop_url Destination for screen pops requests. skill_based Flag indicating whether skill-based routing is used by the ACD Queue. skip_busy Flag describing if agents on non-acd calls are skipped when selected for a queue call. sla Maximum acceptable time in seconds for calls to remain queued. subtenant Subtenant associated with the ACD Queue. wrap_allow_extend Flag indicating whether an agent can extend wrap time. Used by the Corvisa Softphone to determine if wrap time can be extended for an agent. wrap_extension_max If wrap_allow_extend is set to true, the maximum of times an agent can extend wrap time. If wrap_allow_extend is set to true, it must be greater than 0.
33 wrap_time If enable_call_wrap is set to true, the amount of time (in seconds) an agent has to wrap a call before becoming available to receive another call. wrap_time_extension If wrap_allow_extend is set to true, the amount of time (in seconds) an agent can extend wrap time.
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/
Allworx Queuing and Automated Call Distribution Guide (Release 7.2.3.x)
Allworx Queuing and Automated Call Distribution Guide (Release 7.2.3.x) No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic,
CALL CENTER REPORTS GUIDE
CALL CENTER REPORTS GUIDE RELEASE 18.0 DOCUMENT VERSION 2 BroadWorks Guide Copyright Notice Copyright 2011 BroadSoft, Inc. All rights reserved. Any technical documentation that is made available by BroadSoft,
TELSTRA IP TELEPHONY STANDARD CALL CENTRE
TELSTRA IP TELEPHONY STANDARD CALL CENTRE REPORTING GUIDE Copyright Telstra Corporation Limited (ABN 33 051 775 556) 2014. All rights reserved. No part of this publication may be reproduced, stored in
Allworx Queuing and Automated Call Distribution Guide (Release 7.1.0.x)
Allworx Queuing and Automated Call Distribution Guide (Release 7.1.0.x) No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic,
Contact Center. Admin and Subscriber User Guide
Contact Center Admin and Subscriber User Guide 11/12/2014 Table of Contents Configure Contact Center... 1 Queue Profile Setup... 1 Group Policies...1 Configure Basic Contact Center Settings... 6 Configure
UNITY CALL CENTER REPORTING. Version 1.0
UNITY CALL CENTER REPORTING Version 1.0 Contents Introduction... 3 Accessing the Reports... 3 Abandoned Call Report... 4 Settings:... 4 Report:... 5 Agent Activity Detail Report... 6 Settings:... 6 Report:...
The Call Centre feature builds on the functionality available in the Hunt Group Feature and enhances it with:-
1 CALL CENTRE ACD Description Use the feature if you want to allow a Site to distribute incoming calls to multiple Users from a single central phone number. GCI provides support for Basic allowing multiple
Automatic Call Distribution (ACD) AGENT USER GUIDE. 76-110-0430/E Release 5 Issue 1
Automatic Call Distribution (ACD) AGENT USER GUIDE 76-110-0430/E Release 5 Issue 1 76-110-0430/E Release 5 Issue 1 Automatic Call Distribution (ACD) AGENT USER MANUAL Telrad Telecommunications Inc. Woodbury,
ACD Queues List Definitions. The ACD Queue list provides a summary about all available ACD Queues in a given VirtualPBX.
ACD Queues Depending on how your VirtualPBX is used, callers might contact your company to obtain sales information, product support, status on a service requests, or similar tasks without knowledge of
IP-COM Automatic Call Distributor (ACD)
IP-COM Automatic Call Distributor (ACD) The ACD (Automatic Call Distributor) provides the queuing and routing mechanism, receiving and processing requests from incoming calls. Calls are routed to agents
Unified Contact Center
Unified Contact Center for Microsoft Lync Server 2010 & 2013 Qualified Contact Center Solution MaxACD Unified Contact Center for Microsoft Lync Server 2010 and 2013 With Microsoft Lync now being deployed
Allworx Call Assistant 2.4 Quick Reference Guide
Allworx Call Assistant 2.4 Quick Reference Guide No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy,
Table of Contents INTRODUCTION... 5 ADMINISTRATION... 6 MANAGING ACD GROUPS... 8
WorldSmart ACD Help Table of Contents INTRODUCTION... 5 OVERVIEW... 5 WHO CAN CREATE AND MANAGE ACD... 5 ADMINISTRATION... 6 CREATING A NEW GROUP... 6 ASSIGN PHONE NUMBER... 7 MANAGING ACD GROUPS... 8
Hosted VoIP Phone System. Admin Portal User Guide for. Call Center Administration
Hosted VoIP Phone System Admin Portal User Guide for Call Center Administration Contents 1 About this Guide... 4 2 Accessing the Hosted VoIP Phone System Administration Portal... 5 3 Hosted VoIP Phone
GNAV Pro User Guide TABLE OF CONTENTS
GNAV PRO USER S GUIDE For support or suggestions for this guide: University IT 585-275-2000 [email protected] Revised September 2015 TABLE OF CONTENTS About this Guide... 1 Support... 1 Logging
FOR SHORETEL CHAMPION PARTNERS ShoreTel Contact Center Workgroups vs. ECC 9 GENERAL SYSTEM OVERVIEW
FOR SHORETEL CHAMPION PARTNERS ShoreTel Contact Center Workgroups vs. ECC 9 Features Targeted Solutions Workgroup GENERAL SYSTEM OVERVIEW Informal ACD Groups Enterprise Contact Center 9 Medium to Large
managedip Hosted TDS Table of Contents Call Center Administrator Guide
Table of Contents Setting up a Call Center Enterprise Settings... 1 Call Center Settings... 6 Agent Settings... 9 Assigning Users... 10 Call Center Features... 11 Directory Number Hunting... 12 Announcements
Automatic Call Distribution
Automatic Call Distribution Agent User Guide UCLA INFORMATION TECHNOLOGY SERVICES Introduction Automatic Call Distribution (ACD) is an advanced callprocessing product, offering dynamic call distribution.
Hosted VoIP Phone System. Admin Portal User Guide for. Enterprise Administrators
Hosted VoIP Phone System Admin Portal User Guide for Enterprise Administrators Contents Table of Figures... 3 1 About this Guide... 4 2 Accessing the Hosted VoIP Phone System Administration Portal... 5
Access Cloud Call Center Features
Access Cloud Call Center Features General Operational Features Queue Addressing/DNIS support - Assign full DN or Extension to queue - Assign multiple DNIS per Queue Assign Agents to queues - Assign to
Call Center Features DATA SHEET. Feature. General Operational Features
Call Center s DATA SHEET General Operational s Call Center Creation Wizard Queue Addressing/DNIS support Assign full DN or Extension to queue Assign SIP Alias to queue Assign multiple DNIS per Queue Assign
Features & User Guide
& User Guide Welcome to RCN Hosted Voice Thank you for choosing RCN Hosted Voice as your new telephone system. By partnering with RCN Business Services, you now have access to incredible state-of-the-art
ACD Processing: IC's Automatic Communication Distribution
ACD Processing: IC's Automatic Communication Distribution Technical Reference Customer Interaction Center (CIC) Vonexus Enterprise Interaction Center (Vonexus EIC) Version 3.0 Last updated 6/24/2008 Abstract
Software Features. Software Features
Allworx Software Features Software Features Allworx Advanced options for improved communications. Allworx provides a wide range of software feature options to help your business increase its productivity,
CALL CENTER AGENT CCA APPLICATION GUIDE
CALL CENTER AGENT CCA APPLICATION GUIDE TABLE OF CONTENTS BUTTONS DISPLAY... 3 1. OPEN THE CALL CENTER AGENT... 4 2. SWITCH YOUR AGENT STATUS TO AVAILABLE... 5 3. ACCEPT A CALL... 6 4. WRAPPING UP... 7
Overview of Web Request Routing Through Unified ICM
Example Web Collaboration Scripts, page 1 Example E-mail Scripts, page 7 Universal Queue Scripts, page 11 Example Unified CCE Scripts, page 14 Additional Example Outbound Option Scripts, page 19 Estimated
UCLA Communications Technology Services. Agent User Guide. for Electronic Business Sets. CTS Application Support Services
UCLA Communications Technology Services Au to m at i c Call Distribution Agent User Guide for Electronic Business Sets Introduction Automatic Call Distribution (ACD) is an advanced call-processing product,
ADMINISTRATOR GUIDE Call Queuing Administrator Guide V 2.0. 8x8 Call Queuing. Administrator Guide. Version 2.0 February 2011
8x8 Call Queuing Administrator Guide Version 2.0 February 2011 Table of Contents Introduction...3 How an 8x8 Call Queue Works...4 Example: Primary and Secondary Queue Extension Group...4 Getting Started...5
Nortel Contact Center/Symposium Report Library Catalog
1 Agent Agent Activity By Supervisor - Daily Grouped by Supervisor then by agent. This report Timestamp, Logged In Time, Not Ready Time, ACD Talk Supervisor, Agent summarizes the daily agent activity for
Feature Highlights: Automatic Call Distribution (ACD) CTI with E1, T1, PSTN, & IP. Support SS7 Signaling. Screen Popup. Find Last Agent.
w w w. g p l e x. c o m Why R Call Center? gplex Call Center allows easy deployment and expansion. Agents can be located remotely at multiple locations while the core server placed at the center office.
ACD Manual. Version 3.1 for SV8100 R8
ACD Manual Version 3.1 for SV8100 R8 September 2012 Contents What is ACD?... 4 Setting up ACD for the First Time... 5 Using PC Pro Wizards... 5 Determining When Calls can be delivered to ACD Groups...
What do you get with Call Centre ACD that you don t get with a hunt group?
BT Cloud Voice Call Centre Automatic Call Distribution What is it? Cloud Voice has a Call Centre ACD to distribute incoming calls from a single central phone number to multiple agents in a site. Incoming
Quick Reference Guide. Hosted Thin Call Center R20 Supervisor Agent Tasks
Quick Reference Guide Hosted Thin Call Center R20 Supervisor Agent Tasks Call Center Interface The following elements are available from the Call Center main interface: Global Message Area This is located
Template 1 - Call Center
Template 1 - Call Center Basic story Description This is a normal call center, open during UVA official business hours (8AM-5PM, Monday through Friday), and closed after business hours and on weekends.
Understanding the Data Discrepancy between Different Cisco Unified CCX Reports
Understanding the Data Discrepancy between Different Cisco Unified CC Reports Cisco Unified Contact Center Express (Unified CC) provides several reporting capabilities which includes several details of
Real. Answering Service. Platform for. Businesses. Real Telecommunication Corp.
Real Answering Service Platform for Answering Service Businesses Real Telecommunication Corp. Table of Contents Real Answering Service... 3 Some of the Features and Benefits of RAS... 3 Answering Service
Understanding ACD and SMDR
Understanding ACD and SMDR If your contact center uses Customer Interaction Solutions and the Mitel SX-2000 or 3300 ICP, all data used in reports and real-time monitors are generated from two PBX data
BetterVoice Platform User Guide
BetterVoice Platform User Guide Table of Contents: 1. Call Continuity..... pg 1 2. Call Groups..... pg 2 3. Call Queues... pg 5 4. Caller ID... pg 9 5. Company Call Recording... pg 12 6. Conference Bridge......
Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk
Programming Autodesk PLM 360 Using REST Doug Redmond Software Engineer, Autodesk Introduction This class will show you how to write your own client applications for PLM 360. This is not a class on scripting.
Automatic Call Distribution
Automatic Call Distribution Supervisor User Guide UCLA INFORMATION TECHNOLOGY SERVICES Introduction Automatic Call Distribution (ACD) is an advanced callprocessing product, offering dynamic call distribution.
Agent Tasks. Dial from Directory 1. In the Content panel, select the target directory. 2. Click the phone number you want to call.
Agent Tasks Call Center Interface The following elements are available from the Call Center interface: Menu bar Located at the top, it allows you to set up your preferences for using the Call Center. Global
CloudSpan VoIP Services Feature List
CloudSpan VoIP Services Feature List Interested in learning how our proven software platform can revitalize your business communications? With CloudSpan by VoIP Supply, we give you the tools and features
MiCloud Contact Center
MiCloud Contact Center Integrated Tools for Managing and Reporting Contact Center Performance MiCloud Contact Center provides companies the sophisticated yet easy-to-use tools they need to manage, measure
Questions to ask clients prior to setting up a call center
Questions to ask clients prior to setting up a call center Is this an inbound or outbound call center? How many total agents do you have? Are there multiple shifts? If so, how many agents per shift? How
TS-Dialer simplifying Business
TS-Dialer simplifying Business TS-Dialer offers required analysis to monitor Agent's Performance, Call Traffic, Campaign wise performance etc. For identification agent needs to login. During the duty hours
ShoreTel Enterprise Contact Center 8 Report Data Fields
ShoreTel Enterprise Contact Center 8 Report Data ields November 2012 Legal Notices Document and Software Copyrights Copyright 1998-2012 by ShoreTel Inc., Sunnyvale, California, USA. All rights reserved.
Call centre definitions
Call centre definitions Abandoned calls Cross selling Logged on time Speed of answer Absence CTI Lost calls Status ACD DDI LWT Talk time Adherence Erlang Message Unavailable AHT FRE Offered calls Utilisation
8x8 Complete Contact Center
8x8 8x8 services include: Multimedia contact management including phone, chat, email, voicemail, and third-party Internet fax Powerful, easy to use hosted call center solution 8x8 is a hosted call center
BroadWorks Call Center Guide
BroadWorks Call Center Guide Table of Contents Log into Call Center Configuration Settings Page 3 Change Your Password... Page 3 Dashboard... Page 4 Agent View and Status... Page 5 Change Agent ACD State...
Contact Center. Agent Quick Start Guide
Contact Center Agent Quick Start Guide 11/12/201 Agent Tasks 1 f g h i 2 a d c e b Contact Center Interface The following elements are available from the Contact Center main interface: 1 Global Message
AGENT LICENSE FEATURES
Telesphere Call Center FEATURES AGENT LICENSE FEATURES Standard Agent Premium Agent Standard Agent Premium Agent Access Call Center Reporting - (All Agents, All Call Centers) Access Call Center Reporting
Connect2Leads Introduction
Connect2Leads Introduction Company Information Connect2Leads is the premier provider of SaaS (cloud based) call center Solutions for outbound & inbound call centers. We provide a better suite of hosted
The following reference lineup was used in our verification testing for Version 6.0.1.0:
Article ID: 51647 Last Review: September 13th, 2012 Release notes for 6.0.1 This is the list of all items for 6.0.1, released on Friday, September 14th, 2012. For more information, you can visit Mitel
Logging In. Supervisor Set Up. Contents. No table of contents entries found.
Contents No table of contents entries found. Logging In Launch the Mysphere Call Center icon located on your desktop by double clicking it. Your log in screen will appear. (To create an icon on your desktop,
How To Use A Pplx On A Pc Or Cell Phone (For A Business)
PBXact/PBXtended Features Schmooze Com Inc. Copyright 2011 Schmooze Communications. All Rights Reserved. Standard Features Unlimited Extensions Each employee can have their own extension, regardless of
Fidelity ACD Agent. User Guide
Fidelity ACD Agent User Guide TABLE OF CONTENTS 1- BASIC CONCEPTS...3 2- START THE FIDELITY ACD AGENT PROGRAM...4 3- USING THE FIDELITY ACD AGENT PROGRAM...5 3.1 Registering... 5 3.2 Answering an Incoming
FEATURE COMPARISON GUIDE. Wave Contact Center 1.0 TeleVantage Contact Center 7.5 CONVERSip Contact Center 1.0 QuickQ 5.0
FEATURE COMPARISON GUIDE Wave Contact Center 1.0 TeleVantage Contact Center 7.5 CONVERSip Contact Center 1.0 QuickQ 5.0 Introduction This document specifies the differences in Contact Center feature content
Hosted Thin Call Center
Hosted Thin Call Center AGENT TASKS Available You are available to receive calls. Unavailable You are not available to receive calls. Wrap-Up You are wrapping up a call and you are temporarily unavailable
The Evolved Call Center
The Evolved Call Center The Evolved Call Center is designed to provide contact centers of all sizes with access to a broad range of features, with increased scalability and flexibility delivered in an
Contact Center Solution Guide. Version: 1.0 Date: October, 2013
Version: 1.0 Date: October, 2013 Contents 1 Overview...1 1.1 Key Features...2 1.2 Contact Center Offerings...4 1.3 Contact Center User Roles... 5 1.3.1 Receptionist...5 1.3.2 Office Workgroup...5 1.3.3
Call Center. e d i t i o n. VISIONware Call Center Edition
e d i t i o n Call Center Advanced Simplicity Call Center Edition The Call Center Edition offers a set of features needed for an organization to effectively start and manage inbound and outbound call campaigns.
www.samcom.com.au Samsung OfficeServ ACD Call Centre Interactive Voice Response (IVR) Samsung OfficeServ ACD/IVR
www.samcom.com.au Samsung OfficeServ ACD Call Centre Interactive Voice Response (IVR) Samsung OfficeServ ACD/IVR OfficeServ ACD Call Centre Samsung OfficeServ ACD Call Centre is specifically tailored for
Analog Business Phone User Guide
Analog Business Phone User Guide Emergency To dial 911 for emergency service, you must dial the Outside Access Digit first (usually 9) + 911. Customer Service / Technical Support (919) 459-2300, option
Call Recording User Guide. Schmooze Com Inc.
Schmooze Com Inc. Chapters Overview Logging In Creating a Call Recording Rule Extension Level Call Recordings Queue Level Call Recordings Inbound Route Level Call Recordings Recap Overview Call Recordings
Automatic Call Distribution For Business and Call Centers
Automatic Call Distribution For Business and Call Centers Making Connections Matters Busy organizations require a phone system that can do more than simply handle the traffic. Calls need to get answered
ShoreTel Enterprise Contact Center 8 Report Data Fields
ShoreTel Enterprise Contact Center 8 Report Data ields May, 2013 Legal Notices Document and Software Copyrights Copyright 1998-2013 by ShoreTel Inc., Sunnyvale, California, USA. All rights reserved. Printed
NEXTLEVEL INTERNET. NextLevel Voice Office Manager Guide
NEXTLEVEL INTERNET NextLevel Voice Office Manager Guide N E X T L E V E L I N T E R N E T NextLevel Voice Office Manager Guide NextLevel Internet P.O. Box 502661 San Diego, CA 92150 Sales 858-836-0703
8x8 Virtual Contact Center
8x8 8x8 services include: Multimedia contact management including phone, chat, email, voicemail, and third-party Internet fax Powerful, easy to use hosted call center solution 8x8 is a hosted call center
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
ORACLE ADVANCED INBOUND TELEPHONY
ORACLE ADVANCED INBOUND TELEPHONY KEY FEATURES Oracle Advanced Inbound Telephony is an application that COMPREHENSIVE CTI AND TELEPHONY SUPPORT Support enterprise-wide, multi-site contact centers Support
Using Enhanced Call Center Features on Yealink IP Phones with BroadSoft UC One. September 28 2013 Document Version: V1.0
Using Enhanced Call Center Features on Yealink IP Phones with BroadSoft UC One 1 September 28 2013 Document Version: V1.0 Document Revision History Version Change Log 1.0 Edited and published document.
- Inbound/Outbound call blending. Agents are sent pre-loaded outgoing calls when no incoming
VoiceGuide ACD Introduction VoiceGuide ACD system is included as part of VoiceGuide v7. Features: - Smart call routing to agents (skill based, algorithm based, etc) - In queue announcements. - Caller returns
Customer Interaction Solutions
FEATURE MATRIX MITEL Customer Interaction Solutions A Highly Flexible, Two-tiered Offering Mitel Customer Interaction Solutions consists of Mitel Contact Center Enterprise Edition and Mitel Contact Center
Five9 Virtual Contact Center
Cloud Contact Center Software Five9 Virtual Contact Center Campaign Administrator s Guide November 2014 This guide describes how to create, configure, and manage outbound, inbound, and autodial campaigns.
Office Voice User Guide. User Guide
Office Voice User Guide User Guide Contents Anonymous Call Rejection 3 Call Block 3 Call Forward 4 Call Return 5 Call Waiting 5 Caller ID 6 Do Not Disturb 7 Find Me 7 Last Number Redial 8 Selective Call
Advanced Customer Education Presentation NEC SV9100 Contact Advanced Customer Education Document
Advanced Customer Education Presentation NEC SV9100 Contact Advanced Customer Education Document In this course you will learn about the Contact Center features and applications. This document is designed
Automatic Call Distribution For Business and Call Centers
Automatic Call Distribution For Business and Call Centers Making Connections Matters Busy organizations require a phone system that can do more than simply handle the traffic. Calls need to get answered
CALL CENTER. Web-based USER GUIDE
CALL CENTER Web-based USER GUIDE Agent Tasks Call Center Interface The following elements are available from the Call Center main interface: Global Message Area This is located to the right of the Call
Masergy Call Center Overview
Masergy Call Center Overview Masergy offers a single platform that supports any customer environment, from individuals and small groups who may only need simple call distribution and queuing features,
The Competella Attendant and Agent clients are Windows-based. Management- and configuration tools are web-based.
Unified Communication Suite for Microsoft Lync - Product Guide Release 2013 R1 May 31, 2013 Overview The Competella Unified Communication Suite includes excellent tools for switchboard attendants and contact
Verizon Collaboration Plug-In for Microsoft Outlook User Guide
Verizon Collaboration Plug-In for Microsoft Outlook User Guide Version 4.11 Last Updated: July 2011 2011 Verizon. All Rights Reserved. The Verizon and Verizon Business names and logos and all other names,
VIRTUAL COMMUNICATIONS EXPRESS FEATURE DESCRIPTIONS
VIRTUAL COMMUNICATIONS EXPRESS FEATURE DESCRIPTIONS End-User Features: All end users are provided with the features described in this section. Alternate Numbers Enables users to have up to ten phone numbers
CudaTel Configuration Example: Inbound Call Center
CudaTel Configuration Example: Inbound Call Center Description: This document describes the steps necessary to create a basic inbound call center on a CudaTel Communication Server. By following the steps
Empowered by Innovation. User s Guide. P/N 1770082 July 2006 Printed in U.S.A.
Empowered by Innovation User s Guide P/N 1770082 July 2006 Printed in U.S.A. This manual has been developed by NEC Unified Solutions, Inc. It is intended for the use of its customers and service personnel,
M3905 Call Center Meridian Digital Telephone
Nortel Knowledge Network M3905 Call Center Meridian Digital Telephone User Guide Enterprise Voice Solutions Customer Documentation While you are away from your desk: Call Forward 38 Table of Contents Introduction
Verizon Collaboration Plug-In for Microsoft Outlook User Guide
Verizon Collaboration Plug-In for Microsoft Outlook User Guide Version 4.11 Last Updated: July 2011 2011 Verizon. All Rights Reserved. The Verizon and Verizon Business names and logos and all other names,
Allworx Call Assistant 2.3 Quick Reference Guide
Allworx Call Assistant 2.3 Quick Reference Guide No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy,
Integration SDK (HTTP API)
Integration SDK (HTTP API) 1. General agreements............................................ 3 2. Infrastructure................................................ 3 2.1 Get unique identifier.........................................
Contact Center Solutions
1256_7964-Contact Center Solutions_Layout 1 2/17/11 10:51 AM Page 1 FEATURE MATRIX MITEL Contact Center Solutions A Highly Flexible, Two-Tiered Offering Mitel Contact Center Solutions consist of Mitel
Arc Enterprise. Supervisor Text Reports. Version 5.1.x
Arc Enterprise Supervisor Text Reports Version 5.1.x 2003-2011 Arc Solutions (International) Ltd. All rights reserved No part of this documentation may be reproduced in any form or by any means or used
Contact Center Help: Campaign Configuration
Contact Center Help: Campaign Configuration Topic: LiveOps Admin Portal > Routing > Campaigns Help: Page Help: Campaigns Site: https://tenant.hostedcc.com/mason/admin/doc/pagehelp/campaigns/chapter0.html
ACD Setup & Operation
SCS 4.0 ACD Setup & Operation Task Based Guide Copyright 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document is complete
MegaPath Call Center Agent/Supervisor
MegaPath Call Center Agent/Supervisor User Guide Table of Contents 1 Introduction to Call Center...9 1.1 Call Center Agent... 9 1.2 Call Center Supervisor... 10 2 Getting Started... 12 2.1 Launch Call
incontact NG Agent Reference Manual
incontact NG Agent Reference Manual incontact NG Agent Reference Manual Title incontact Central Reference Manual Revision 04142011 Copyright 2011 incontact, Inc. Product Code About incontact, Inc. provides
