API Documentation Downloads FAQ Forum. The phone number for Caller ID on callback. Delay in seconds before callback happens once contact is accepted

Size: px
Start display at page:

Download "API Documentation Downloads FAQ Forum. The phone number for Caller ID on callback. Delay in seconds before callback happens once contact is accepted"

Transcription

1 Sign In API Documentation Downloads FAQ Forum Home» API» Patron API PATRON API - V8.0 The Patron Services API is a collection of API calls that can be used to create patron-facing applications. A few examples may be: Mobile application that allows a patron to request a call back at a future time Web site that allows users to request a live chat session with an agent Applications or services that create "work items" to be routed in the incontact system (such as routing trouble tickets or sales opportunities from a web request, or from a process that is monitoring a CRM system.) Resources Visit the incloud App Showcase Interested in becoming an incloud Developer partner? Enter Search term... General Requirements To use any of the incontact APIs in your application, you must have an API authentication token from the token service. See the API authentication token tutorial for information on what type of token is needed for your application and the getting started tutorial to get to know how to get an API authentication token. Callback : Callback API Show/Hide List Operations Expand Operations POST /queuecallback Request an immediate callback This method allows you to request that a callback be made "immediately" (i.e. as soon as an agent is available to call back). The callback request is placed in the queue for the designated skill, and will be routed in order a with other calls that are in that queue. phonenumber (required) The phone number to call. Use "+" followed by country code for international numbers callerid calldelaysec skill targetagent prioritymanagement initialpriority acceleration The phone number for Caller ID on callback Delay in seconds before callback happens once contact is accepted ID for skill to queue the call against if wanted ID for Agent to queue the call for. If included will override the skill parameter DefaultFromSkill means skill manages priority change, Custom means the values in this API manage priority change Initial priority, default value is "0" Rate to accelerate priority, default value is "0". Increases each second by (acceleration/60)

2 maxpriority sequence ziptone screenpopsrc screenpopurl timeout Maximum value priority can accelerate to, default value is "0" String that is converted to speech and played to agent before patron is dialed BeforeSequence or AfterSequence will play a tone to agent before or after speech. NoZipTone prevents a tone Defines how to open a URL for the agent in the default browser. DefaultFromSkill opens the skill in central, UseOnPageOpen, Custom uses the URL passed by "screenporurl" URL to be used if "screenpopsource" is set to Custom Time in seconds the callback should remain active POST /promise Schedule a callback This method allows you to schedule a call back for a future time. The main difference between this and /queuecallback is that the queuecallback action starts an active contact and places it in the queue (skill or agent) selected. It will be treated as if it were a live call from a patron as it is processed. The /promise method simply creates a reminder for someone (skill or agent) to place an outbound call at a specific time in the future. firstname (required) The first, or given, name of the patron to be called back lastname (required) The last name, or surname, of the patron to be called back phonenumber (required) The phone number to call. Use "+" followed by country code for international numbers skill (required) The outbound phone skill with which to place the call. If you specify both skill and targetagent then targetagent takes precedence. Both the targetagent and skill must be included. If you intend to queue the callback to a skill (i.e. route the callback to any available agent with that skill), the targetagent value must be "" (empty )

3 targetagent must be "" (empty ) "skill" must be a valid outbound skill ID (not a skill name) The agent to which to queue the callback. Both the targetagent and skill must be included. If you intend to queue the callback to a skill (i.e. route the callback to any available agent with that skill), the targetagent value must be "" (empty ). "targetagent" must be a valid ID of an active agent (not an agent username) promisedate (required) The ISO 8601 date the callback should occur date-time promisetime notes timezone HTTP Status Code Reason 400 Skill Or Agent Required First Name Required Last Name Required Phone Number Required Promise Date Required Invalid Time Zone Promise Date In Past The ISO 8601 time the callback should occur Any callback notes that should be displayed to the agent when the callback is routed Timezone for the callback request date-time ChatRequests : (Updated in v8.0) Chat Client API Show/Hide List Operations Expand Operations POST /contacts/chats Starts a chat session This method should be used to request a chat session on behalf of a Patron. A contact will be created and queued to the Skill associated with the Point Of Contact identified by pointofcontact. NOTE: Starting multiple Chats with the same Point of Contact GUID will not allow the chat sessions to interact with each other. Each call of this method creates independent chat sessions that will be routed and handled separately even if they are sent to the same Point Of Contact. Response Class (Status 202) Model Model Schema Chat { chatsession (, optional): Session ID that should be used in calls to the SendText, GetText, and EndChat methods Response Content Type application/json

4 pointofcontact (required) The GUID of the Chat Point of Contact that should be used to start the chat fromaddress chatroomid parameters A indicating the party that initiated the chat Optional chat room ID of an existing chat session to join An optional list of parameter values to be passed to the POC script Array[] Parameter content type: application/json HTTP Status Code Reason 400 Invalid Point of Contact Invalid Chat Room DELETE /contacts/chats/{chatsession Ends an active chat session Ends the chat identified by {chatsession. Response Class (Status 200) Model Model Schema endchatobject { errordescription (, optional): If there is an error, the response body will contain a detailed description Response Content Type application/json chatsession (required) Session ID that should be used in calls to the SendText, GetText, and EndChat methods 404 Invalid Chat Session GET /contacts/chats/{chatsession Gets any inbound chat text from an active chat session Returns the chat posts associated with an active chatsession and returns the chatid needed to retrieve subsequent posts.

5 NOTE: The ChatId that is returned by this call must be used in the "next" call to retrieve chat text posts. If you do not use the new chatid in your next call, the API will return a stranscript of all of the Each request to retrieve chat text returns a new chat ID that should be used in the subsequent call. For example, when a chat is started, a chat ID of "ewpudxdbrnjnaefktlq0anbyqitery83n01sa2f1vzh3t1fonju0rugrm04=" might be returned. After URL encoding it, you would use this in a call to retrieve chat texts: GET /chats/ewpudxdbrnjnaefktlq0anbyqitery83n01sa2f1vzh3t1fonju0rugrm04%3d This call would return a chat object with a new ID: { "ChatSession":"eWpudXdBRnJNaEFKTlQ0anBYQitERy83N01Sa2F1VzhWTkhsYnkwZkdSbFg=", "Messages":[ {"Label":"label", "MessageText":"text", "Timestamp":" T14:55:60Z" ] You would use this new session ID (URL encoded) in the next call to retrieve chat texts: GET /chats/ewpudxdbrnjnaefktlq0anbyqitery83n01sa2f1vzhwtkhsynkwzkdsbfg%3d Response Class (Status 200) Model Model Schema ChatMessages { chatsession (, optional):, messages (Array[singleReturnMessage], optional): singlereturnmessage { Label (, optional):, PartyTypeId (, optional):, PartyTypeValue (, optional):, Text (, optional): Content of the message text, Timestamp (date, optional): Time that message text was sent Response Content Type application/json chatsession (required) Session ID from previous GetText or StartChat methods timeout (required) Value must be between 0-60 seconds HTTP Status Code Reason 204 No Messages 400 Invalid Timeout. Value must be between Session Ended Invalid Chat Session POST /contacts/chats/{chatsession/send-text Sends a text to members of the chat session Posts the provided in "message" to the chat contact identified by {chatsession. A single post can be passed as a parameter in the URI query. If no agent has accepted the chat request and you use this method to send a text, you will receive a 200 "No Party Listening" response and the text will not be sent.

6 This method sends the text typed into the chat interface as the Patron is typing it and before they have hit the enter key. This functionality must be enabled on the Chat Skill as defined in Central. chatsession (required) Session ID that should be used in calls to the SendText, GetText, and EndChat methods label (required) Text used to label the message when viewed by the recipient message (required) The literal text to send to the recipient(s) HTTP Status Code Reason 200 No Party Listening 400 Invalid Chat Room No Label Provided No Message Provided 404 Invalid Chat Session Session Ended POST /contacts/chats/{chatsession/typing ***(New in v8.0)*** Notify Agent Patron is Typing Use this API method to indicate to an Agent in a chat session that the Patron is typing a response or has entered the response in the session. chatsession (required) A chat session ID obtained when chat is started istyping istextentered 404 Invalid chatsession Id. 409 Invalid state. Indicates the Patron has started typing Indicates the Patron has entered a response boolean boolean POST /contacts/chats/{chatsession/typing-preview ***(New in v8.0)*** Sends Agent a Chat Preview

7 This functionality must be enabled on the Chat Skill as defined in Central. chatsession (required) A chat session ID obtained when chat is started previewtext 200 No Party Listening 400 Invalid Chat Room Text that has been entered by the Patrin in the chat interface boolean 403 Security privileges prevent access to data 404 Invalid Chat Session Session Ended 409 'Show Patron Typing Preview' is disabled for the skill WorkItem : Work Item API Show/Hide List Operations Expand Operations POST /interactions/work-items Create a new work item Creates a work item and launches the Point of Contact script for the named point of contact. The Point of Contact is different from other APIs in that rather than using the GUID in Central, it must be in the format of ID - Name, for example workitempoc. pointofcontact (required) The point of contact that you want to handle this work item. workitemid A user-defined unique ID for this work item. workitempayload The data for this work item workitemtype from A user-defined type for this work item. A user-defined description of the work item's origin. 400 Point of contact is not valid for this business unit. 403 Forbidden

8 Legal Privacy 2017 incontact Inc.

Property and Copyright Information. Notice

Property and Copyright Information. Notice 1.0 Administrator Panel END USER DOCUMENTATION This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for

More information

SpitFire Enterprise Update Log

SpitFire Enterprise Update Log 1 Spitfire Update Log 1.7.7.0 SpitFire Enterprise Update Log Version 1.7.7.0 2/05/18 Chat Module Windows Agent- Licensed Feature (Broadcast, Campaign, Group, User) Chat Module Web Agent- Licensed Feature

More information

Virtual Contact Center Implementation

Virtual Contact Center Implementation Virtual Contact Center Implementation JumpStart Training for the VCC Professional Plan Virtual Contact Center Implementation Please review this document to prepare for your JumpStart training sessions.

More information

Architectural Overview

Architectural Overview Unified CCE Software Overview, page 1 Outbound Option Software Components, page 2 Outbound Option Scripting, page 17 Fault Recovery, page 19 Campaign Manager Congestion Control, page 19 Unified CCE Software

More information

HOSTED CONTACT CENTRE

HOSTED CONTACT CENTRE ---------------------------------------------------------------------------- ------- --------- HOSTED CONTACT CENTRE AGENT CONSOLE GUIDE Version 9.4 Revision 1.0 Confidentiality and Proprietary Statement

More information

Five9 Application for Zendesk

Five9 Application for Zendesk Cloud Contact Center Software Five9 Application for Zendesk Agent s Guide November 2014 This guide describes how to use the integration between Five9 and the Zendesk desktop to process calls and voice

More information

Microsoft Dynamics CRM Integration with Remote Support

Microsoft Dynamics CRM Integration with Remote Support Microsoft Dynamics CRM Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

More information

AIRCALL GUIDE FOR ADMINS

AIRCALL GUIDE FOR ADMINS AIRCALL GUIDE FOR ADMINS 1 TABLE OF CONTENTS Welcome to Aircall! 1. Configure your Account Configure your numbers Manage your agents Explore Analytics Choose your plan & pricing 2. Configure your App Make

More information

Quick Guide to TraiTel Outbound IVR. Traitel Telecommunications Ltd 2012 Telephone: (61) (2) Page 1

Quick Guide to TraiTel Outbound IVR. Traitel Telecommunications Ltd 2012 Telephone: (61) (2) Page 1 Quick Guide to TraiTel Outbound IVR Page 1 Quick Guide to TraiTel Outbound IVR The TraiTel IVR system is designed to be easy to set up for people with basic computer knowledge. TraiTel has a team of technical

More information

SYNTHESYS.NET PORTAL WEB BROWSER

SYNTHESYS.NET PORTAL WEB BROWSER SYNTHESYS.NET PORTAL WEB BROWSER Synthesys.Net Portal Taking Calls 1 All rights reserved The contents of this documentation (and other documentation and training materials provided), is the property of

More information

Five9 Adapter for Oracle

Five9 Adapter for Oracle Cloud Contact Center Software Five9 Adapter for Oracle Agent s Guide November 2017 This guide describes how to use the integration between Five9 and the Oracle Service Cloud to process calls, voicemail,

More information

Microsoft Dynamics CRM Integration with Bomgar Remote Support

Microsoft Dynamics CRM Integration with Bomgar Remote Support Microsoft Dynamics CRM Integration with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown

More information

Five9 Adapter for Velocify

Five9 Adapter for Velocify Cloud Contact Center Software Five9 Adapter for Velocify Agent s Guide November 2017 The Five9 Adapter for Velocify enables you to integrate the Five9 Cloud Contact Center with the Velocify desktop. This

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Release Notes Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the contents hereof are subject

More information

Instructions for SAP CCtr. How to use SAP Contact Center phone system

Instructions for SAP CCtr. How to use SAP Contact Center phone system Instructions for SAP CCtr How to use SAP Contact Center phone system How to start the program 1. Open Internet Explorer browser. Type http://[sap Contact Center Website].ipcallcenters.eu into the address

More information

User guide. MiCloud Office user web

User guide. MiCloud Office user web User guide MiCloud Office user web User guide: MiCloud Office user web Copyright 2004-2014 Mitel Communications AB Revision: 4.3.4520 User guide Table of Contents 1. MiCloud overview... 1 1.1. Home...

More information

Contact Center. Installation, Configuration and Operation Manual

Contact Center. Installation, Configuration and Operation Manual Contact Center Installation, Configuration and Operation Manual Contents 1. Introduction... 3 2. Key Terms and Definitions... 4 3. How the Contact Center Works... 5 4. Installing the Contact Center...

More information

Start your greeting once the Incoming Call window appears. Make sure you are in Ready state to receive incoming calls

Start your greeting once the Incoming Call window appears. Make sure you are in Ready state to receive incoming calls Agent Desktop Plus Working With Voice Calls Receiving & Initiating Calls Receiving an Outbound Campaign Call Make sure you are in Ready state to receive incoming calls Always enable Auto-Answer for Outbound

More information

USER GUIDE Summer 2015

USER GUIDE Summer 2015 USER GUIDE Summer 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

User guide. MiCloud Office user web

User guide. MiCloud Office user web User guide MiCloud Office user web User guide: MiCloud Office user web Notice The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Networks

More information

Five9 Plus Adapter for Microsoft Dynamics CRM

Five9 Plus Adapter for Microsoft Dynamics CRM Cloud Contact Center Software Five9 Plus Adapter for Microsoft Dynamics CRM Administrator s Guide September 2017 This guide describes how to install and configure the Five9 Plus Adapter for Microsoft Dynamics

More information

Five9 Agent Desktop Toolkit

Five9 Agent Desktop Toolkit Cloud Contact Center Software Five9 Agent Desktop Toolkit User s Guide November 2017 The Agent Desktop Toolkit comprises the CTI Web Services and the Web toolbar, a softphone integrated in your browser.

More information

UNITY CRM INTEGRATION USER GUIDE

UNITY CRM INTEGRATION USER GUIDE UNITY CRM INTEGRATION USER GUIDE CONTENTS 1 Overview... 1 2 Configuring Salesforce Integration... 2 3 Configuring AGILE CRM Integration... 5 4 Configuring MS Dynamics Integration... 7 4.1 Integrating MS

More information

Five9 Plus Adapter for Microsoft Dynamics CRM

Five9 Plus Adapter for Microsoft Dynamics CRM Cloud Contact Center Software Five9 Plus Adapter for Microsoft Dynamics CRM Agent s Guide November 2017 The Five9 Plus Adapter for Microsoft Dynamics CRM integrates the Five9 Cloud Contact Center with

More information

Virtual Contact Center

Virtual Contact Center ---------------------------------------------------------------------------- ------- --------- Virtual Contact Center Copyright 2014, 8x8, Inc. All rights reserved. This document is provided for information

More information

Virtual Communications Express User Guide: Call Center Supervisor

Virtual Communications Express User Guide: Call Center Supervisor Feature Overview Call Center Supervisor supports agent monitoring, queue management, current and historical reporting, and other features required in large call centers. Benefits of Call Center include:

More information

Five9 Plus Adapter for Agent Desktop Toolkit

Five9 Plus Adapter for Agent Desktop Toolkit Cloud Contact Center Software Five9 Plus Adapter for Agent Desktop Toolkit Agent s Guide November 2017 The Five9 Plus Adapter for Agent Desktop Toolkit integrates the Five9 Cloud Contact Center with your

More information

Example Unified WIM Web Collaboration Scripts. Overview of Unified WIM Web Request Routing Through Unified ICM

Example Unified WIM Web Collaboration Scripts. Overview of Unified WIM Web Request Routing Through Unified ICM Example Unified WIM Web Collaboration Scripts, page 1 Example Unified WIM E-mail Scripts, page 7 Universal Queue Scripts, page 11 Example Unified CCE Scripts, page 14 Additional Example Outbound Option

More information

Manage Workflows. Workflows and Workflow Actions

Manage Workflows. Workflows and Workflow Actions On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page

More information

Five9 Virtual Contact Center

Five9 Virtual Contact Center Cloud Contact Center Software Five9 Virtual Contact Center Agent s Guide November 2017 This guide describes how to receive and process calls and textual interactions and use tools, such as scripts, worksheets,

More information

Five9 Plus Adapter for NetSuite

Five9 Plus Adapter for NetSuite Cloud Contact Center Software Five9 Plus Adapter for NetSuite Administrator s Guide April 2018 This guide describes how to install and configure the Five9 Plus Adapter for NetSuite, which enhances the

More information

SIP Devices Configuration

SIP Devices Configuration Set Up Ingress Gateway to Use Redundant Proxy Servers, on page 1 Set Up Call Server with Redundant Proxy Servers, on page 1 Local SRV File Configuration Example for SIP Messaging Redundancy, on page 2

More information

Five9 Adapter for Oracle

Five9 Adapter for Oracle Cloud Contact Center Software Five9 Adapter for Oracle Administrator s Guide July 2017 This guide describes how to configure the integration between Five9 and the Oracle Service Cloud, previously know

More information

SIP Devices Configuration

SIP Devices Configuration Set Up Ingress Gateway to Use Redundant Proxy Servers, page 1 Set Up Call Server with Redundant Proxy Servers, page 1 Local SRV File Configuration Example for SIP Messaging Redundancy, page 2 Load-Balancing

More information

User Guide. 3CX CRM Plugin for AutoTask. Single Tenant Version

User Guide. 3CX CRM Plugin for AutoTask. Single Tenant Version User Guide 3CX CRM Plugin for Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may be reproduced or

More information

Phone Manager Application Support APRIL 2016 DOCUMENT RELEASE 4.3 APPLICATION SUPPORT

Phone Manager Application Support APRIL 2016 DOCUMENT RELEASE 4.3 APPLICATION SUPPORT Phone Manager Application Support APRIL 2016 DOCUMENT RELEASE 4.3 APPLICATION SUPPORT ZohoCRM NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

Example Scripts. Example Collaboration Scripts. Overview of ECE Web Request Routing Through Unified ICM

Example Scripts. Example Collaboration Scripts. Overview of ECE Web Request Routing Through Unified ICM Example Collaboration Scripts, page 1 Example Enterprise Chat and Email E-mail Scripts, page 7 Example Universal Queue Scripts, page 11 Example Unified CCE Scripts, page 18 Additional Example Outbound

More information

the Microsoft.NET framework be installed on the desktop. It is no longer available, as of CIC 2016 R1.

the Microsoft.NET framework be installed on the desktop. It is no longer available, as of CIC 2016 R1. Customer Center (CIC) supports several interaction management client applications. This documentation uses the term "CIC client" to refer to these applications, which include,, Client, and Client. Starting

More information

1 P age NEXTIVA CALL CENTER. Supervisor User Guide. nextiva.com/support 2015 NEXTIVA, ALL RIGHTS RESERVED

1 P age NEXTIVA CALL CENTER. Supervisor User Guide. nextiva.com/support 2015 NEXTIVA, ALL RIGHTS RESERVED 1 P age NEXTIVA CALL CENTER Supervisor User Guide nextiva.com/support 2015 NEXTIVA, ALL RIGHTS RESERVED 2 P age Creating Employees... 3 Creating an Employee... 3 Assigning Licenses to Employees... 7 Schedules...

More information

Grandstream Networks, Inc. UCM6xxx Series IP PBX Lightweight Call Center Guide

Grandstream Networks, Inc. UCM6xxx Series IP PBX Lightweight Call Center Guide Grandstream Networks, Inc. UCM6xxx Series IP PBX Lightweight Call Center Guide Table of Contents INTRODUCTION... 4 UCM CALL CENTER FEATURES LIST... 5 Call Queues... 5 Virtual Queue... 7 Position Announcement...

More information

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English

Configuration Guide. Requires Vorex version 3.9 or later and VSA version or later. English Kaseya v2 Integration of VSA with Vorex Configuration Guide Requires Vorex version 3.9 or later and VSA version 9.3.0.11 or later English September 15, 2017 Copyright Agreement The purchase and use of

More information

Work State Indicator Upon login, the initial state is Not Ready. Click this to open the dropdown menu.

Work State Indicator Upon login, the initial state is Not Ready. Click this to open the dropdown menu. Quick Reference Guide Five9 Plus Adapter for Salesforce Agent Training Navigating the Adapter Interface Using the Plus Adapter for the Salesforce Interface The Five9 Plus Adapter loads on the left side

More information

Creating an IVR Script for Abandoned Calls

Creating an IVR Script for Abandoned Calls Cloud Contact Center Software Creating an IVR Script for Abandoned Calls Administrator s Guide June 2014 This document describes how to configure a script that plays an message to customers who were not

More information

glocom [ ] New features:

glocom [ ] New features: glocom 4.2.0 glocom [ 4.2.0 ] New features: Implemented Automatic Updates over Portal service. Applied epic CRM popup implemented. Handle connection to pbxware v5 and do automatic updates. Added quick

More information

MANUAL 2 - CREATING YOUR CAMPAIGN PART 1

MANUAL 2 - CREATING YOUR CAMPAIGN PART 1 MANAGE TRAINING MANUAL MANUAL 2 - CREATING YOUR CAMPAIGN PART 1 Last Update 7/23/2018 Contents MANUAL 2 - CREATING YOUR CAMPAIGN Training Videos... 2 Campaigns... 3 New Campaign Checklist... 4 Campaigns

More information

Five9 Virtual Contact Center

Five9 Virtual Contact Center Cloud Contact Center Software Five9 Virtual Contact Center Basic Administrator s Guide January 2018 This guide describes how to use the Five9 Administrator application to configure and manage your Virtual

More information

Telepo for Mobile. Copyright Mitel Communications AB

Telepo for Mobile. Copyright Mitel Communications AB Telepo for Mobile Table of Contents Copyright 2014-2016 Mitel Communications AB 1. Application Overview... 1 1.1. Supported devices... 1 2. To get started with Telepo for Mobile... 2 3. Overview... 2 4.

More information

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018 RSA NetWitness Logs Event Source Log Configuration Guide Salesforce Last Modified: Wednesday, February 14, 2018 Event Source Product Information: Vendor: Salesforce Event Source: CRM Versions: API v1.0

More information

Lightspeed Online Self Care Guide

Lightspeed Online Self Care Guide Lightspeed Online Self Care Guide 1. Open up your browser and go to https://myportal.lightspeedtelecom.com 2. Enter your user name and password. 3. For your username, use your email address. 4. For your

More information

Remote identification service integration

Remote identification service integration Remote identification service integration Technical description 2018 Contents 1 Document... 3 2 Process schema... 3 3 Client s requirements... 3 4 HTTP REST communication... 4 5 Process Example... 7 6

More information

Account Customer Portal Manual

Account Customer Portal Manual Account Customer Portal Manual Table of Contents Introduction Dashboard Section Reporting Section My Settings Section My Account Section Billing Section Help Section 2 4 7 15 20 25 27 1 Introduction SMTP

More information

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc.

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Version Brekeke PBX version 3, Administrator s Guide (Basic) Copyright This document is copyrighted by Brekeke Software, Inc.

More information

Workspace Desktop Edition Deployment Guide. Team Communicator Options

Workspace Desktop Edition Deployment Guide. Team Communicator Options Workspace Desktop Edition Deployment Guide Team Communicator Options 11/26/2017 Team Communicator Options Contents 1 Team Communicator Options 1.1 teamcommunicator.add-recent-filters.voice 1.2 teamcommunicator.always-clear-textbox-on-new-interaction

More information

Unified CCX Outbound Dialer Configuration

Unified CCX Outbound Dialer Configuration Outbound Feature for Unified CCX, page 1 Supported Dialers and Dialing Modes for Outbound, page 5 Configure Outbound Subsystem in Unified CCX, page 6 Configure General Outbound Properties, page 6 Configure

More information

Information About SIP Compliance with RFC 3261

Information About SIP Compliance with RFC 3261 APPENDIX A Information About SIP Compliance with RFC 3261 This appendix describes how the Cisco SIP IP phone complies with the IETF definition of SIP as described in RFC 3261. It has compliance information

More information

Mobile App Department Manager Guide. Department Manager Guide

Mobile App Department Manager Guide. Department Manager Guide Mobile App Department Manager Guide Department Manager Guide RingCentral Office@Hand from AT&T Mobile App Department Manager Guide Table of Contents Table of Contents Welcome... 3 Main Menu... 5 Messages...5

More information

Five9 Plus Adapter for Salesforce

Five9 Plus Adapter for Salesforce Cloud Contact Center Software Five9 Plus Adapter for Salesforce Agent s Guide November 2017 The Five9 Plus Adapter for Salesforce integrates the Five9 Cloud Contact Center with your Salesforce.com desktop.

More information

TraiTel IVML Interactive Voice Meta Language and API Documentation v1.0

TraiTel IVML Interactive Voice Meta Language and API Documentation v1.0 TraiTel IVML Interactive Voice Meta Language and API Documentation v1.0 Page 1 Table of Contents IVML XML Format... 3 About:... 3 Variables:... 4 Functions:... 5 ... 5 ... 5 ...

More information

Five9 Plus Adapter for Salesforce Lightning Experience

Five9 Plus Adapter for Salesforce Lightning Experience Cloud Contact Center Software Five9 Plus Adapter for Salesforce Lightning Experience Agent s Guide June 2018 The Five9 Plus Adapter for Salesforce Lightning Experience integrates the Five9 Cloud Contact

More information

Genesys One Routing Applications Guide

Genesys One Routing Applications Guide Genesys One 8.1.0 Routing Applications Guide tice Copyright 2013 Genesys Telecommunications Laboratories, Inc. All rights reserved. Genesys Telecommunications Laboratories, Inc. 2001 Junipero Serra Blvd.,

More information

HOSTED CONTACT CENTRE

HOSTED CONTACT CENTRE ---------------------------------------------------------------------------- ------- ----- ---------------------------------------------------------------------------- ------- --------- HOSTED CONTACT

More information

Automated Attendant and Voice Mail System

Automated Attendant and Voice Mail System LX Automated Attendant and Voice Mail System User s Guide Nothing contained in this guide shall be deemed to be, and this guide does not constitute, a warranty of, or representation with respect to, any

More information

CDYNE Phone Notify! Web Service

CDYNE Phone Notify! Web Service CDYNE Phone Notify! Web Service Version 4.3 WSDL: http://ws.cdyne.com/notifyws/phonenotify.asmx?wsdl Testing URL: http://ws.cdyne.com/notifyws/phonenotify.asmx Developer Resources: http://wiki.cdyne.com/index.php/phone_notify!

More information

CDYNE Phone Notify! Web Service

CDYNE Phone Notify! Web Service CDYNE Phone Notify! Web Service Version 4.3 WSDL: http://ws.cdyne.com/notifyws/phonenotify.asmx?wsdl Testing URL: http://ws.cdyne.com/notifyws/phonenotify.asmx Developer Resources: http://wiki.cdyne.com/wiki/index.php?title=phone_notify%1

More information

Virtual Contact Center

Virtual Contact Center Configuration Manager Guide ---------------------------------------------------------------------------- ------- ----- Virtual Contact Center 1 Configuration Manager Guide 2 Copyright 2012, 8x8, Inc. All

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

USER GUIDE Spring 2016

USER GUIDE Spring 2016 USER GUIDE Spring 2016 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

Net2Phone Office Administrator s Guide

Net2Phone Office Administrator s Guide Net2Phone Office Administrator s Guide May 2015 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

More information

Oracle Contact Center Anywhere Interaction Manager Guide. Version June 2008

Oracle Contact Center Anywhere Interaction Manager Guide. Version June 2008 Oracle Contact Center Anywhere Interaction Manager Guide Version 8.1.2 June 2008 Copyright 2005, 2008, Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

MyTeleMed iphone User Guide

MyTeleMed iphone User Guide Table of Contents Log In 2 Incorrect Login Information 2 Registering your iphone 2 Main Menu 3 Messages 3 Compose a New Message 4 Message Recipients 4 Archiving Messages 4 Message Detail 5 Add Comments

More information

MiCloud. Copyright Mitel Communications AB

MiCloud. Copyright Mitel Communications AB MiCloud Copyright 2004-2015 Mitel Communications AB Table of Contents 1. Search... 4 2. Administration Home... 5 3. Service Administration... 5 3.1. General Service Configuration Information... 5 3.1.1.

More information

Configuration of Campaigns and Imports

Configuration of Campaigns and Imports Outbound Option Configuration Process Overview, on page 1 Configuration Process Task Maps, on page 2 Preliminary Configuration Requirements, on page 3 Contact and Do Not Call List Imports, on page 6 Outbound

More information

Bomgar PA Integration with ServiceNow

Bomgar PA Integration with ServiceNow Bomgar PA Integration with ServiceNow 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of

More information

Horizon Integrator CRM. Salpo Add-in Guide

Horizon Integrator CRM. Salpo Add-in Guide Horizon Integrator CRM Salpo Add-in Guide Contents Introduction... 5 Information You'll Need... 6 Configuration... 6 Testing... 7 Dialing configuration... 7 Introduction This page will guide you through

More information

Virtual Contact Center. Agent User Guide

Virtual Contact Center. Agent User Guide Virtual Contact Center Agent User Guide Virtual Contact Center Copyright 2018, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the contents hereof are subject

More information

BT CLOUD PHONE. USER GUIDE FOR MY EXTENSION.

BT CLOUD PHONE. USER GUIDE FOR MY EXTENSION. BT CLOUD PHONE. USER GUIDE FOR MY EXTENSION. WHAT S IN THIS GUIDE. 1. Welcome to BT Cloud Phone. 3 2. Express setup. 4 3. Accessing the BT Cloud Phone Portal. 5 4. My Extension Dashboard. 6 4.1 Overview:

More information

WeChat Adobe Campaign Integration - User Guide

WeChat Adobe Campaign Integration - User Guide WeChat Adobe Campaign Integration - User Guide Table of Contents 1. Verticurl App Account Creation... 1 2. Configuration Setup in Verticurl App... 2 3. Configure QR Code Service... 3 3.1 QR code service

More information

Aeonix Contact Center

Aeonix Contact Center Aeonix Contact Center Agent User Guide Version 3.0 Document Edition 3.0 The information contained in this document is proprietary and is subject to all relevant copyright, patent and other laws protecting

More information

Client Samples. Android Sample

Client Samples. Android Sample Client Samples Android Sample 2/6/2018 Contents 1 Android Sample 1.1 Overview 1.2 Implemented Scenarios 1.3 Prerequisites 1.4 Running the Sample Client Samples 2 Android Sample Updated in 8.5.112, 8.5.114

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here>

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here> OpenScape Contact Center Multimedia First Contact Resolution in a Multi-Channel World Agenda OpenScape Contact Center Agile vs. Enterprise What is OpenScape Contact Center Multimedia

More information

MiCloud Office. Android guide. Copyright Mitel Communications AB

MiCloud Office. Android guide. Copyright Mitel Communications AB Table of Contents MiCloud Office Android guide Copyright 2009-2015 Mitel Communications AB 1. MiCloud Office Overview... 1 1.1. Supported Phones... 1 2. To get started with MiCloud Office... 2 3. Starting

More information

WCS Hosted PBX Admin Portal Release 6.0 Administration Reference Guide Final January 2013

WCS Hosted PBX Admin Portal Release 6.0 Administration Reference Guide Final January 2013 WCS Hosted PBX Admin Portal Release 6.0 Administration Reference Guide Final January 2013 www.wcs.com Table of Contents About this Document... 1 Typographical Conventions... 1 Introduction... 3 What's

More information

Participating in a WebEx Meeting

Participating in a WebEx Meeting Participating in a WebEx Meeting This tutorial will focus on participating in a WebEx Meeting. If you would like to learn how to schedule a meeting, host a meeting, or get started in your personal room,

More information

Manual Cellip 365 Centrex Dashboard Audio Library Recording a Sound File Auto attendant (IVR)...

Manual Cellip 365 Centrex Dashboard Audio Library Recording a Sound File Auto attendant (IVR)... TABLE OF CONTENTS Manual Cellip 365 Centrex... 2 1. Dashboard... 2 2. Audio Library... 2 2.1 Recording a Sound File... 3 3. Auto attendant (IVR)... 3 4. Response group... 6 4.1 Change the name of the response

More information

Module Feature List

Module Feature List Key Differentiators Seamless Integration Informed and empowered interactions in every channel and every touch point - inbound and outbound calls, Email, Web chat, Social Media and SMS all from the same

More information

Essential Import Service

Essential Import Service Essential Import Service Interface Specification Version 2.0 March 2017 Contents Operation of the service Default callback listener Importing Microsoft Excel and CSV documents Operation of the service

More information

Beacon Office. User Manual. Radianta Inc. V2.4.3

Beacon Office. User Manual. Radianta Inc. V2.4.3 Beacon Office User Manual V2.4.3 Radianta Inc. 3/2008 Radianta, Inc. Beacon Office Page 2 Table of Contents Introduction...3 What is Beacon Office...3 How to Use This Guide... 3 Beacon Office Overview...4

More information

UCM6102/6104/6108/6116 Configuration

UCM6102/6104/6108/6116 Configuration UCM6102/6104/6108/6116 Configuration This document introduces manual configuration steps performed for interoperability testing between AccessLine and Grandstream UCM6102/6104/6108/6116. Configuration

More information

Deploy Agent Greeting

Deploy Agent Greeting This chapter describes how to deploy and configure the Agent Greeting feature. Agent Greeting deployment tasks, page 1 Agent Greeting Scripts, page 15 Agent Greeting deployment tasks Procedure Step 1 Ensure

More information

Web based click-to-call button v3.0

Web based click-to-call button v3.0 Web based click-to-call button v3.0 ABOUT US Founded in 2006 as a VoIP system integrator. No VCs, privately held Addressing the software service provider market. HQ in Spain, worldwide sales through partners.

More information

Unified CCX Outbound Dialer Configuration

Unified CCX Outbound Dialer Configuration Outbound Feature for Unified CCX, on page 1 Supported Dialers and Dialing Modes for Outbound, on page 5 Configure Outbound Subsystem in Unified CCX, on page 7 Configure General Outbound Properties, on

More information

English version. Tele2 Manual Administration

English version. Tele2 Manual Administration English version Tele2 Manual Administration Contents 1. Services... 3 1.1. Contact lists... 4 1.1.1. Corporate Directory Shortcuts... 4 1.1.2. Organization/User Group/User Contacts... 5 1.2. Music on hold...

More information

Mobile App Adminstrator Guide. Administrator Guide

Mobile App Adminstrator Guide. Administrator Guide Mobile App Adminstrator Guide Administrator Guide RingCentral Office@Hand from AT&T Mobile App Administrator Guide Table of Contents Table of Contents Overview...4 Getting Started... 5 How to Start...5

More information

VCC Chat Feature Highlights

VCC Chat Feature Highlights VCC 2.5.9 Chat Feature Highlights Agenda VCC Chat Channel Overview VCC Dashboard Chat Features Overview VCC Agent Desktop Chat Features Overview Managing the Channel Status Agent Status Monitoring for

More information

Five9 Agent Desktop Plus

Five9 Agent Desktop Plus Cloud Contact Center Software Five9 Agent Desktop Plus User s Guide January 2018 This guide describes how to process voice interactions with campaign tools, such as scripts, connectors, and worksheets.

More information

RingCentral for MINDBODY. User Guide

RingCentral for MINDBODY. User Guide RingCentral for MINDBODY User Guide RingCentral for MINDBODY User Guide Contents 2 Contents Introduction.............................................................. 3 About RingCentral for MINDBODY.....................................................

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

Five9 Virtual Contact Center

Five9 Virtual Contact Center Cloud Contact Center Software Five9 Virtual Contact Center Campaign Administrator s Guide September 2017 This guide describes how to create, configure, and manage outbound, inbound, and autodial campaigns.

More information