A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS.

Size: px
Start display at page:

Download "A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS."

Transcription

1 API manual Version 1.0 This API is designed to work with our service Chat Helpdesk. Terms A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS. A channel is an account (phone number or id) in messengers or SMS, used by your company to chat with clients via service Chat Helpdesk. A transport is a messenger or SMS, using which, messages are being received or sent via given channel. General information 1. To test and set up this API, we recommend to use Postman app for Google Chrome. Here s a link to access a collection of preset API commands for Chat Helpdesk using test account (import it in Postman). 2. RESTful architecture and methods GET, PUT and POST are used. 3. Commands results are presented in JSON format. 4. Authorization is based on <token>, which is available in API settings. Here are the parameters for all commands: Authorization: <token> Host: api.chat2desk.com 5. Commands that return big list of data support pagination using URL parameters: a. limit number of records returned (default is 20). b. offset offset from the 1 st record of the list (default is 0). Example of the request (list of clients): /v1/clients?offset=50&limit=30 6. It is allowed to contact only those clients who at least once contacted your company during last 12 months. 7. There are 2 ways of obtaining messages from your clients: Download of accumulated messages with messages (GET). Handling a new message event with web_hook (POST). This way is more preferred. Before you begin 1. Obtain your <token> in API settings. Also make sure there that your API-access level is at least demo. This information is also available with api_modes (GET).

2 2. Then you have to decide for yourself: a. You only want to receive and send messages with this API. In this case you can limit yourself with only 2 commands with minimum set of parameters: messages (GET) or web_hook (POST) messages (POST) But here you should handle all these tasks yourself and independently from our system: Administration of operators, clients and transports Distribution of the messages over dialogs, and the dialogs over operators Changing of message's read status Changing of dialog's open/closed status Sending autoanswers to clients and more. b. You want to use all functionality and synchronize with all parameters of our system, including operators, channels, dialogs, etc. In this case you have to not only send and receive messages, but also perform other actions: Synchronize a list of operators in your system with that list in ours. In our system operators are created, edited and deleted in Settings. The list of existing operators see operators (GET). When a new message arrives, it should be assigned on an operator messages/assign (POST). Alternatively you may not assign, but when answering that message you should indicate operator_id of operator who answered it see messages (POST). When changing a dialog s operator (transfer of a dialog to another operator) in your system you should also do so in ours see dialogs (PUT). Use clients list and their properties (nick, avatar) from our system see clients (GET). When an operator reads a message form a client it is advised to tag the message as read see messages/read (GET). Alternatively you may not tag if the message is answered by an operator, it will be tagged as read automatically. As a result, our and your system will be fully synchronized it will ease future integrations and allow your operators correctly work via both this API as well as via Chat Helpdesk web-interface.

3 List of API commands messages (GET) Returns a list of accumulated messages (both from and to clients). web_hook (POST) Sets up URL for web hook event on new message form client. messages (POST) Sends message to a client. messages/assign (POST) Assigns new message to an operator. api_info (GET) Returns current API version, your API access level, your web_hook (POST), number of API requests per month and more. clients (GET) Returns a list of your clients with their info. operators (GET) Returns a list of your operators. dialogs (GET) Returns a list of your dialogs. dialogs (PUT) Changes a dialog state and sets up its operator. roles (GET) Returns a list of available roles. dialog_states (GET) Returns a list of available dialog states. clients (PUT) Assigns a name to a client. channels (GET) Returns a list of your channels with info. regions (GET) Returns a list of available regions. countries (GET) Returns a list of available countries. transports (GET) Returns a list of available transports and their supported attachments. messages/read (GET) Tags a message as read. api_modes (GET) Returns a list of available API access levels.

4 messages (GET) Returns a list of accumulated messages (both from and to clients). GET /v1/messages or GET /v1/messages/<id> Parameters: <id> message id. When this command is used without <id> it returns a list of all accumulated messages. When <id> is specified, the command returns extended info about given message, including dialog_id, operator_id and channel_id. When requesting a list of messages, these filters are supported: transport type Example of filtered request: GET /v1/messages?transport=telegram&type=from_client Typical reply when requesting a list of messages (without <id>): "id": 614, "text": "Hi. See the photo.", "photo": " "coordinates": null, "transport": "whatsapp", "type": "from_client", "read": true, "created": " T19:45:05 UTC", "client_id": 13, "id": 615, "text": "Thanks for your message. Please wait for our reply ", "photo": null, "coordinates": null, "transport": "whatsapp", "type": "system", "read": true, "created": " T19:45:07 UTC", "client_id": 13, "id": 616, "text": "Hi. Let s solve your problem!", "photo": null, "coordinates": null, "transport": "whatsapp", "type": "to_client", "read": true, "created": " T19:48:06 UTC", "client_id": 13,

5 "id": 617, "text": null, "photo": null, "coordinates": " ", "transport": "whatsapp", "type": "from_client", "read": false, "created": " T19:50:04 UTC", "client_id": 13, "meta": "total": 617, "limit": 20, "offset": 610 Typical reply when requesting one message, using its <id>: "id": 614, "text": " Hi. See the photo.", "photo": " "coordinates": null, "transport": "whatsapp", "type": "from_client", "read": true, "created": " T19:45:05 UTC", "client_id": 13, "dialog_id": 11, "operator_id": 1, "channel_id": 1 Some fields: coordinates geo coordinates. type: o from_client a message from client. o to_client a message to client. o system system message (autoanswer). read read tag of a message from client. All messages to client are considered as read. created date of message creation (UTC). web_hook (POST) Specifies an URL, which will be called on new message from client event. All necessary information will be uploaded to that URL. Thanks to web hook, you ll be instantly notified and there will be no need to periodically examine our system with 2 nd way of retrieving messages see messages (GET).

6 POST /v1/companies/web_hook Request body: "url": " Any URL is allowed but we recommend https. If empty value (null) is set then web hook is deleted. You can check your current web hook with api_info (GET). The reply is equal to reply of messages (GET). messages (POST) Sends a message to a client. POST /v1/messages Request body: "client_id": 7, "text": "Hi there!", "attachment": " "type": "to_client", "transport": "viber", "channel_id": 1, "operator_id": 3 Params: client_id client id (see clients (GET)). text message text (required if there s no attachment). attachment URL for attachment (photo, video, audio). Sending coordinates to a client is not supported. Check transports (GET) about supported attachments for given transport. type: o to_client message to a client (by default). o system system message (autoanswer). transport: o whatsapp o viber o telegram o sms If omitted, transport of last message from the client will be used.

7 channel_id see channels (GET). If omitted, channel of last message from the client will be used. operator_id see operators (GET). If omitted, the message will be sent from the current operator of the dialog. If an operator different from the current operator is specified, then corresponding dialog will be reset to that new operator. Typical reply contains info about actually used channel, operator and more: "data": "channel_id": 1, "operator_id": 3, "transport": "whatsapp", "type": "to_client", "client_id": 7 messages/assign (POST) Assigns new message to an operator specified. The message should not belong to open dialog (i.e. should be a message from new client or from old client but in closed dialog). This command, actually, assigns an operator to perform a chat with given client. POST /v1/messages/<id>/assign Request body: "operator_id": 3 Params: <id> message id. See messages (GET). operator_id id of an operator, on whom this message and subsequent dialog will be assigned. See operators (GET). If specified message belongs to open dialog, then an error will be returned. To transfer an open dialog to a new operator, use dialogs (PUT). api_info (GET) Returns: Current API version, used by our service. Your current API access level see api_modes (GET). Number of API requests of your company for current month. Number of available channels. Current web_hook (POST) and other parameters.

8 Params: GET /v1/companies/api_info Host: api.chat2desk.com Authorization: <token> <token> here and everywhere see description of authorization. "data": "mode": "demo", "hook": null, "current_version": 1, "requests_this_month": 98, "channels": 2 clients (GET) Returns a list of your clients with their info. GET /v1/clients or GET /v1/clients/<id> or GET /v1/clients/<id>/transport or GET /v1/clients?phone= Params: <id> client s id. If transport key is specified, then the list of available transports for the client specified is returned. phone client s phone filter. If id or phone are omitted, full list of your clients is returned. Typical reply without specifying client id (full list of your clients): "id": 1607, "assigned_name": "Real VIP client", "phone": " ", "name": "Thats my name!", "avatar": " "region_id": null,

9 "country_id": 1 "meta": "total": 3911, "limit": 20, "offset": 1600 Typical reply when client id is specified (one client with extended info): "data": "id": 1607, "assigned_name": "Real VIP client", "phone": " ", "name": "Thats my name!", "avatar": " "region_id": null, "country_id": 1 "first_client_message": " T18:36:41 UTC", "last_client_message": " T20:29:25 UTC" Some fields: assigned_name a name assigned to the client see clients (PUT). phone client s phone if exists. Not available for Telegram. name client s nickname (for messengers). See below a typical reply when specifying client id and transport key. Actually, these are the transports (with channels), which given client used to chat with your chat center and which can be used to answer to that client. "channel_id": 1, "transports": [ "sms", "whatsapp" ] "channel_id": 2, "transports": [ "viber" ]

10 operators (GET) Returns a list of your operators. GET /v1/operators These filters are supported: phone "id": 1, " ": "sss@gmail.com", "phone": null, "role": "admin", "online": false, "first_name": null, "last_name": null, "last_visit": " T19:45:22 UTC" "id": 2, " ": "111@11.com", "phone": " ", "role": "supervisor", "online": false, "first_name": "John", "last_name": "Smith", "last_visit": " T17:25:43 UTC" "meta": "total": 2, "limit": 20, "offset": 0

11 dialogs (GET) Returns a list of your dialogs. Once an operator opens a chat with a client, the messages start to belong to a dialog. Params: GET /v1/dialogs or GET /v1/dialogs/<id> <id> dialog id (optionally). If specified, only info about given dialog will be returned. These filters are supported: operator_id state Example of request for dialogs, which belong to operator with operator_id=2: GET /v1/dialogs?operator_id=2 Typical reply without specifying dialog id: "id": 1, "state": "closed", "begin": " T20:52:39 UTC", "end": " T20:05:41 UTC", "operator_id": 1 "id": 2, "state": "open", "begin": " T20:34:24 UTC", "end": null, "operator_id": 1 "id": 3, "state": "open", "begin": " T11:30:32 UTC", "end": null, "operator_id": 1 "meta": "total": 429, "limit": 20, "offset": 0

12 Some fields: state dialog state. A dialog may be open or closed. If a client sends a message to closed dialog, then the client will (by default) receive an autoanswer and any operator will be able to start this dialog. Until a dialog is closed, it is performed by an operator who started it. A dialog can be closed because of the following reasons: o Time period after last message of the dialog is elapsed. The time period is set up in Settings. o The dialog is manually closed by an operator on the web site or with dialogs (PUT). dialogs (PUT) Changes a dialog state and sets up its operator. Params: PUT /v1/dialogs/<id> <id> dialog id (required). See dialogs (GET). Request body: "operator_id": 1, "state": "open" or "closed", roles (GET) Returns a list of available roles. GET /v1/help/roles "unconfirmed", "operator", "supervisor", "admin", "disabled", "deleted"

13 Some possible values: unconfirmed a user hasn t confirmed his\her yet. supervisor an operator with extended rights (supervisor). disabled a blocked operator. deleted a deleted operator. dialog_states (GET) Returns a list of available dialog states. GET /v1/help/dialog_states "open", "closed" clients (PUT) Assigns a name to a client (assigned name). This name can contain real client s name or extended info (for example, VIP status). PUT /v1/clients/<id> Request body: "nickname": "This is real VIP client!" Params: <id> client id. nickname client name (assigned name). If null is specified, then the name will be deleted.

14 channels (GET) Returns a list of your channels with info. GET /v1/channels This filter is supported: phone Typical request with the filter: GET /v1/channels?phone= "id": 1, "name": "Demo", "phone": " " "id": 2, "name": "Viber only", "phone": " " "id": 3, "name": "Free", "phone": " " "id": 4, "name": "Boston", "phone": " " "meta": "total": 4, "limit": 20, "offset": 0 regions (GET) Returns a list of available regions. This list is used for automatic region detection based on client s mobile phone. A list of countries also available see countries (GET). GET /v1/regions

15 "id": 1, "country": "Россия", "region": "Краснодар" "id": 2, "country": "Россия", "region": "Тверь" "id": 3, "country": "Россия", "region": "Челябинск" Regions inside a country are available only for Russia. countries (GET) Returns a list of available countries. GET /v1/countries "id": 1, "name": "USA, Canada" "id": 2, "name": "Russia" "id": 3, "name": "Egypt" "id": 4, "name": "South Africa" transports (GET) Returns a list of available transports and their supported attachments. GET /v1/help/transports

16 "data": "whatsapp": "from_client": "text": "yes", "image": "yes", "audio": "no", "video": "yes", "location": "yes" "to_client": "text": "yes", "image": "yes", "audio": "no", "video": "no", "location": "no" "viber": "from_client": "text": "yes", "image": "yes", "audio": "no", "video": "yes", "location": "yes" "to_client": "text": "yes", "image": "no", "audio": "no", "video": "no", "location": "no" "telegram": "from_client": "text": "yes", "image": "yes", "audio": "no", "video": "yes", "location": "yes" "to_client": "text": "yes", "image": "yes", "audio": "no", "video": "no", "location": "no" "sms": "from_client": "text": "yes", "image": "no", "audio": "no", "video": "no", "location": "no" "to_client": "text": "yes", "image": "no", "audio": "no", "video": "no", "location": "no"

17 messages/read (GET) Tags a message as read. Params: GET /v1/messages/<id>/read <id> message id (required). See messages (GET). This command tags a message specified and all other messages from its dialog as read. Note, that when a message gets answered, the message and whole dialog are tagged as read automatically. api_modes (GET) Returns a list of available API access levels. To check you current access level see api_info (GET). GET /v1/help/api_modes "name": "disabled", "description": "API disabled" "name": "demo", "description": "300 requests per month" "name": "normal", "description": "50000 requests per month" "name": "unlimited", "description": "unlimited requests per month"

Cloud Elements! Events Management BETA! API Version 2.0

Cloud Elements! Events Management BETA! API Version 2.0 Cloud Elements Events Management BETA API Version 2.0 Event Management Version 1.0 Event Management Cloud Elements Event Management provides a uniform mechanism for subscribing to events from Endpoints

More information

Use Office 365 on your iphone

Use Office 365 on your iphone Use Office 365 on your iphone Quick Start Guide Check email Set up your iphone to receive your O365 email. Check your calendar wherever you are Always know where you have to be by syncing your calendar

More information

Passcreator API Documentation

Passcreator API Documentation Passcreator API Documentation Version 1.0 - December 2014 USt-IdNr.: DE290188967 Seite 1 von 9 About this Document 3 Obtaining an API key 3 Authentication 3 Testing 3 Get list of pass-templates 4 Get information

More information

Zoom Cloud Meetings: Leader Guide

Zoom Cloud Meetings: Leader Guide Zoom Cloud Meetings: Leader Guide Zoom is a cloud-based conferencing solution that provides both video conferencing and screen share capabilities. Zoom can be used for meetings among individuals or to

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Create a Basic Skype* Account. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Basic Skype* Account. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Basic Skype* Account Intel Easy Steps 1 2012 Intel Corporation Using Skype* to Communicate: Create and use a Basic Skype Account There are different ways of communicating and sharing through the

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

Cloud Elements! Marketing Hub Provisioning and Usage Guide!

Cloud Elements! Marketing Hub Provisioning and Usage Guide! Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading

More information

Uncovering the Covered Tracks: Finding What s Left Behind JAD SALIBA FOUNDER & CTO

Uncovering the Covered Tracks: Finding What s Left Behind JAD SALIBA FOUNDER & CTO Uncovering the Covered Tracks: Finding What s Left Behind JAD SALIBA FOUNDER & CTO Background Teenage geek - IT/Software industry Police officer for 7 years Worked in Tech Crime Unit Started JADsoftware

More information

Web Conferencing Guide for Session Hosts using Microsoft Lync

Web Conferencing Guide for Session Hosts using Microsoft Lync Web Conferencing Guide for Session Hosts using Microsoft Lync With MS Lync, faculty and staff can plan and schedule online meetings for collaborative activities with the ability to share audio, video,

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

Integration Client Guide

Integration Client Guide Integration Client Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Rich Communication Suite Enabler. plus integration with your existing VoIP services

Rich Communication Suite Enabler. plus integration with your existing VoIP services Rich Communication Suite Enabler plus integration with your existing VoIP services Join the next generation telecom market and offer services that are blend the best features of Skype, Viber and WhatsApp.

More information

Store & Share Quick Start

Store & Share Quick Start Store & Share Quick Start What is Store & Share? Store & Share is a service that allows you to upload all of your content (documents, music, video, executable files) into a centralized cloud storage. You

More information

Youtube Tips & Tricks! YouTube Tips and Tricks

Youtube Tips & Tricks! YouTube Tips and Tricks Youtube Tips & Tricks! YouTube Tips and Tricks 5 Make Unlimited Channels on a Single YouTube Account If you are working on AdSense then you must need to know that you shouldn t upload mix niche videos

More information

Storage and Playback Getting Started Guide

Storage and Playback Getting Started Guide Storage and Playback Getting Started Guide Demo URL: http://pubnub.github.io/api guide with tictactoe/history.html Storage and Playback In a Nutshell PubNub's Storage and Playback feature, also informally

More information

Bitrix Intranet Portal. Videoconferencing. Installation And Usage Guide

Bitrix Intranet Portal. Videoconferencing. Installation And Usage Guide Bitrix Intranet Portal Videoconferencing. Installation And Usage Guide Contents Introduction... 3 Chapter 1. General Information... 4 Chapter 2. Configuring Your Bitrix Intranet Portal For Videoconferencing...

More information

Mobile Phone & Website Tracking Platform Operation Guide

Mobile Phone & Website Tracking Platform Operation Guide Mobile Phone & Website Tracking Platform Operation Guide This software is web based system, for users to logon with given user name & password to locate the tracker s current location, play back the history

More information

Wimba Pronto. Version 3.1. Administrator Guide

Wimba Pronto. Version 3.1. Administrator Guide Wimba Pronto Version 3.1 Administrator Guide Wimba Pronto 3.1 Administrator Guide Overview 1 Accessing the Wimba Pronto Administration Interface 2 Managing Multiple Institutions 3 General Features 4 Configuring

More information

TM SysAid Chat Guide Document Updated: 10 November 2009

TM SysAid Chat Guide Document Updated: 10 November 2009 SysAidTM Chat Guide Document Updated: 10 November 2009 Introduction 2 Quick Access to SysAid Chat 3 Enable / Disable the SysAid Chat from the End User Portal. 4 Edit the Chat Settings 5 Chat Automatic

More information

Getting Started with Zoom

Getting Started with Zoom Getting Started with Zoom The Institute of Agriculture has recently purchased a site license for a new cloud-based video conferencing service known as Zoom. If you have ever connected to a GoToMeeting,

More information

Business Online Banking Quick Users Guide

Business Online Banking Quick Users Guide Business Online Banking Quick Users Guide Business Online Banking Quick Users Guide Table of Contents Overview 2 First Time Login 2 Security 4 Contact Points 4 Registering your Browser / Computer 5 Adding,

More information

Package uptimerobot. October 22, 2015

Package uptimerobot. October 22, 2015 Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind

More information

DeskPRO Helpdesk Software: Agent Interface Quick Start Guide

DeskPRO Helpdesk Software: Agent Interface Quick Start Guide support@deskpro.com DeskPRO Helpdesk Software: Agent Interface Quick Start Guide The DeskPRO helpdesk platform is designed to make it easy to handle problems and questions from your users. Your helpdesk

More information

NASDAQ Web Security Entitlement Installation Guide November 13, 2007

NASDAQ Web Security Entitlement Installation Guide November 13, 2007 November 13, 2007 Table of Contents: Copyright 2006, The Nasdaq Stock Market, Inc. All rights reserved.... 2 Chapter 1 - Entitlement Overview... 3 Hardware/Software Requirements...3 NASDAQ Workstation...3

More information

ACCUZIP REST API CALLS. 100% Cloud Based DQ and Mail Processing

ACCUZIP REST API CALLS. 100% Cloud Based DQ and Mail Processing ACCUZIP REST API CALLS 100% Cloud Based DQ and Mail Processing Abstract Upload Name and Address Files for CASS Certification, NCOALink Certification, Duplicate Detection, Postal Presorting, USPS Documentation

More information

Dashboard Admin Guide

Dashboard Admin Guide MadCap Software Dashboard Admin Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

WebEx Integration to Lotus Notes. Users Guide

WebEx Integration to Lotus Notes. Users Guide WebEx Integration to Lotus Notes Users Guide 072310 Copyright 1997 2010 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are trademarks

More information

Callnote for Skype audio recording app

Callnote for Skype audio recording app Callnote for Skype audio recording app User Guide Contents Introduction... 2 Requirements... 2 Application setup... 2 Getting started the Application and allow access to the Skype... 3 Using the Callnote

More information

Free yourself from your desktop and make your meetings click with InterCall s most powerful mobile application, MobileMeet.

Free yourself from your desktop and make your meetings click with InterCall s most powerful mobile application, MobileMeet. MOBILEMEET Feature Comparison Free yourself from your desktop and make your meetings click with InterCall s most powerful mobile application, MobileMeet. Below is a comparison of the features available

More information

Sophos Mobile Control Web service guide

Sophos Mobile Control Web service guide Sophos Mobile Control Web service guide Product version: 3.5 Document date: July 2013 Contents 1 About Sophos Mobile Control... 3 2 Prerequisites... 4 3 Server-side implementation... 5 4 Client-side implementation...

More information

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide AdRadionet to IBM Bluemix Connectivity Quickstart User Guide Platform: EV-ADRN-WSN-1Z Evaluation Kit, AdRadionet-to-IBM-Bluemix-Connectivity January 20, 2015 Table of Contents Introduction... 3 Things

More information

999GPS.net Tracking Platform Operation Guide

999GPS.net Tracking Platform Operation Guide 999GPS.net Tracking Platform Operation Guide Welcome to use this Real Time GPS tracking platform, This software is web based system, it is not necessary to download any software or any plug-in software,

More information

Mobile Conference Connection User Guide Android Mobile Device

Mobile Conference Connection User Guide Android Mobile Device User Guide: Insert Title Mobile Conference Connection User Guide Android Mobile Device What is Mobile Conference Connection? Mobile Conference Connection (MCC) enables registered Instant Meeting leaders

More information

User Guidelines. For. Smart Phone App - Mleads Lite (Version- 3.0)

User Guidelines. For. Smart Phone App - Mleads Lite (Version- 3.0) User Guidelines For Smart Phone App - Mleads Lite (Version- 3.0) Table of Contents Splash screen:... 3 Registration screen:... 3 Login:... 4 Upgrade & Review screen:... 4 Home screen:... 5 Events screen:...

More information

Skype for Business: Get Started... 3. Set-up Audio... 3. Set-up Video... 3. Conversation Window... 4. Shut Your Virtual Office Door...

Skype for Business: Get Started... 3. Set-up Audio... 3. Set-up Video... 3. Conversation Window... 4. Shut Your Virtual Office Door... Desktop/Laptop Contents : Get Started... 3 Set-up Audio... 3 Set-up Video... 3 Conversation Window... 4 Shut Your Virtual Office Door... 4 Personalise... 5 Customise What s Happening Today... 5 Profile

More information

IceBreak FileShare. Quick Guide. File sharing with workflow management

IceBreak FileShare. Quick Guide. File sharing with workflow management IceBreak FileShare Quick Guide File sharing with workflow management on IBM i 2 IceBreak FileShare Content IceBreak FileShare... 3 Features... 4 Requirements... 6 Limitations... 6 Test sites... 6 Install

More information

The Smartest Way to Get Meetings Done

The Smartest Way to Get Meetings Done The Smartest Way to Get Meetings Done It is time to say goodbye to email and calendar hassle: Meetin.gs is the smartest way to meet. Get your meetings on the cloud and access them from any device. The

More information

How to set up SQL Source Control. The short guide for evaluators

How to set up SQL Source Control. The short guide for evaluators How to set up SQL Source Control The short guide for evaluators Content Introduction Team Foundation Server & Subversion setup Git setup Setup without a source control system Making your first commit Committing

More information

FWG Management System Manual

FWG Management System Manual FWG Management System Manual Last Updated: December 2014 Written by: Donna Clark, EAIT/ITIG Table of Contents Introduction... 3 MSM Menu & Displays... 3 By Title Display... 3 Recent Updates Display...

More information

PolyU Staff Email Service. Outlook Web App (OWA) User Guide

PolyU Staff Email Service. Outlook Web App (OWA) User Guide PolyU Staff Email Service Outlook Web App (OWA) User Guide Version 2.2 Last Update: 23 December 2014 PolyU Staff Email: www.polyu.edu.hk/email ITS HelpCentre Support: www.polyu.edu.hk/hots ITS HelpCentre

More information

BlackBerry Business Cloud Services. Administration Guide

BlackBerry Business Cloud Services. Administration Guide BlackBerry Business Cloud Services Administration Guide Published: 2012-07-25 SWD-20120725193410416 Contents 1 About BlackBerry Business Cloud Services... 8 BlackBerry Business Cloud Services feature overview...

More information

Wave Analytics Data Integration

Wave Analytics Data Integration Wave Analytics Data Integration Salesforce, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

Kalendi Android Calendar Client User Manual

Kalendi Android Calendar Client User Manual Kalendi Android Calendar Client User Manual After Installation! 1 How to hook up to Kalendi! 2 How to hook up to Google! 4 Periodic Syncing! 4 Calendars! 5 Recurring events! 6 Custom properties! 8 Attachments!

More information

Item Audit Log 2.0 User Guide

Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Page 1 Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected

More information

Zoom Instructions and Information

Zoom Instructions and Information Zoom Instructions and Information 1. Get Zoom set up Everyone call get a free Zoom account, go to http://zoom.us Put in your Andrews University email account and click Sign Up Free Click Sign Up A box

More information

Using the owncloud Android App

Using the owncloud Android App Using the owncloud Android App Accessing your files on your owncloud server via the Web interface is easy and convenient, as you can use any Web browser on any operating system without installing special

More information

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following

More information

Safeguard Ecommerce Integration / API

Safeguard Ecommerce Integration / API Safeguard Ecommerce Integration / API Product Manual Version 3 Revision 1.11 Table of Contents 1. INTRODUCTION... 4 1.1 Available commands... 4 2. HOW THE ADMINISTRATION SYSTEM IS EXPECTED TO BE USED OPERATIONALLY...

More information

SMS Alarm Messenger. Setup Software Guide. SMSPro_Setup. Revision 090210 [Version 2.2]

SMS Alarm Messenger. Setup Software Guide. SMSPro_Setup. Revision 090210 [Version 2.2] SMS Alarm Messenger SMSPro_Setup Revision 090210 [Version 2.2] ~ 1 ~ Contents 1. How to setup SMS Alarm Messenger?... 3 2. Install the SMSPro_Setup software... 5 3. Connection Type... 6 4. Connection Port

More information

Oracle Siebel Marketing and Oracle B2B Cross- Channel Marketing Integration Guide ORACLE WHITE PAPER AUGUST 2014

Oracle Siebel Marketing and Oracle B2B Cross- Channel Marketing Integration Guide ORACLE WHITE PAPER AUGUST 2014 Oracle Siebel Marketing and Oracle B2B Cross- Channel Marketing Integration Guide ORACLE WHITE PAPER AUGUST 2014 Disclaimer The following is intended to outline our general product direction. It is intended

More information

OneSourceFax Customer Guide

OneSourceFax Customer Guide OneSourceFax Customer Guide General Information Billing: OneSourceFax Plan Features Monthly Charge OneSourceFax 150 Unlimited Faxes to Numbers in your Local Calling Area $12.95 150 Nationwide Long Distance

More information

Talend Component tgoogleanalyticsmanagement

Talend Component tgoogleanalyticsmanagement Talend Component tgoogleanalyticsmanagement Purpose This component addresses the needs of gathering Google Analytics data for a large number of profiles and fine-grained detail data. To prepare the queries

More information

Setting Up Talkdesk: A QUICK START GUIDE FOR ADMINS

Setting Up Talkdesk: A QUICK START GUIDE FOR ADMINS Table of Contents Introduction Setting Up Talkdesk: A QUICK START GUIDE FOR ADMINS Before You Use Talkdesk Create Your Talkdesk Account Basic Talkdesk Setup Buy a Phone Number or Use Your Own Invite Your

More information

BlackBerry Enterprise Server Express. Why upgrade from your current BlackBerry experience?

BlackBerry Enterprise Server Express. Why upgrade from your current BlackBerry experience? BlackBerry Enterprise Server Express Why upgrade from your current BlackBerry experience? Introducing BlackBerry Enterprise Server Express BlackBerry software transforms your smartphone into a productivity

More information

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

Zipit Chat. Functional Specification / User Manual

Zipit Chat. Functional Specification / User Manual Zipit Chat Functional Specification / User Manual 1 Table of Contents 1. Zipit Chat Overview... 4 How to download... 4 Supported version... 4 2. Functionalities... 4 Get Started... 4 Login... 7 Payment

More information

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM)

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM) Reading an email sent with Voltage SecureMail Using the Voltage SecureMail Zero Download Messenger (ZDM) SecureMail is an email protection service developed by Voltage Security, Inc. that provides email

More information

White Lion Seminar Edition Quick Reference Guide

White Lion Seminar Edition Quick Reference Guide White Lion Seminar Edition Quick Reference Guide White Lion Seminar Edition is a full-featured web conferencing service that lets you easily conduct engaging, online events from start to finish for virtually

More information

Z-Way Home Automation User Interface Documentation. (c) Z-Wave.Me Team, based on Version 2.0

Z-Way Home Automation User Interface Documentation. (c) Z-Wave.Me Team, based on Version 2.0 Z-Way Home Automation User Interface Documentation (c) Z-Wave.Me Team, based on Version 2.0 2 Contents 1 The Z-Way HA User Manual 5 1.1 Widgets......................................... 6 1.2 Notifications......................................

More information

MXIE User s Guide. Introduction

MXIE User s Guide. Introduction Introduction MXIE is the software interface by which system users can access MX services and resources. This guide introduces the most frequently used MXIE operations. Refer to the MXIE User s Manual for

More information

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

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

More information

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved.

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved. ACR Triad Web Client Version 2.5 20 October 2008 User s Guide American College of Radiology 2007 All rights reserved. CONTENTS ABOUT TRIAD...3 USER INTERFACE...4 LOGIN...4 REGISTER REQUEST...5 PASSWORD

More information

Unified Meeting 5 User guide for MAC

Unified Meeting 5 User guide for MAC Unified Meeting 5 User guide for MAC Unified Meeting 5 is a web based tool that puts you in complete control of all aspects of your meeting including scheduling, managing and securing your meetings.. Whether

More information

Fleet Manager Quick Guide (Non Maintenance Mode)

Fleet Manager Quick Guide (Non Maintenance Mode) Fleet Manager Quick Guide (Non Maintenance Mode) Launch Fleet Manager: Open the Fleet Manager Application by: 1. Double clicking the icon located on the desktop - or 2. Via Start > Programs > MobileView

More information

Figure 2 4. Click OK (Fig 2, 2). 5. You will enter the conference. Figure 1

Figure 2 4. Click OK (Fig 2, 2). 5. You will enter the conference. Figure 1 Microsoft Lync 0 Joining a Conference Introduction You and meeting participants may join a Lync 0 meeting and conference call in several ways:. With Lync 0. You need the full Lync client installed (necessary

More information

USER GUIDE: HUD WEB TABLE of CONTENTS

USER GUIDE: HUD WEB TABLE of CONTENTS HUD Web User Guide TABLE of CONTENTS Overview: Fonality HUD Web... 4 1. Prerequisites for HUD Web Installation... 6 2. Logging in to Fonality HUD Web... 6 3. Installing the HUD Web Plugin 7 4. Managing

More information

Unified Meeting 5 User guide for Windows

Unified Meeting 5 User guide for Windows Unified Meeting 5 User guide for Windows Unified Meeting 5, a meeting and collaboration application enhances the way you communicate by making meetings convenient and easy to manage. It improves your meeting

More information

Cascaded Lookup 5.0 User Guide

Cascaded Lookup 5.0 User Guide Cascaded Lookup 5.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All material contained in this publication is protected by Copyright and no part of this publication

More information

Data Mailbox. support.ewon.biz. Reference Guide

Data Mailbox. support.ewon.biz. Reference Guide Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz

More information

Sophos Mobile Control Technical guide

Sophos Mobile Control Technical guide Sophos Mobile Control Technical guide Product version: 2 Document date: December 2011 Contents 1. About Sophos Mobile Control... 3 2. Integration... 4 3. Architecture... 6 4. Workflow... 12 5. Directory

More information

Use Office 365 on your iphone or ipad

Use Office 365 on your iphone or ipad Use Office 365 on your iphone or ipad Quick Start Guide Check email Set up your iphone or ipad to send and receive mail from your Office 365 account. Check your calendar wherever you are Always know where

More information

Customer Portal User Manual. 2012 Scott Logic Limited. All rights reserve. 2013 Scott Logic Limited. All rights reserved

Customer Portal User Manual. 2012 Scott Logic Limited. All rights reserve. 2013 Scott Logic Limited. All rights reserved Customer Portal User Manual 2012 Scott Logic Limited. All rights reserve Contents Introduction... 2 How should I use it?... 2 How do I login?... 2 How can I change my password?... 3 How can I find out

More information

The instructions in this user guide will help make meetings easier to manage, more effective and more productive.

The instructions in this user guide will help make meetings easier to manage, more effective and more productive. User Guide for Windows ZONE Conference - Unified Meeting 5 is a web based tool that puts you in complete control of all aspects of your meeting including scheduling, managing and securing your meetings.

More information

Google Apps Migration

Google Apps Migration Academic Technology Services Google Apps Migration Getting Started 1 Table of Contents How to Use This Guide... 4 How to Get Help... 4 Login to Google Apps:... 5 Import Data from Microsoft Outlook:...

More information

Genesys Meeting Center User Guide v4.11

Genesys Meeting Center User Guide v4.11 Genesys Meeting Center User Guide v4.11 www.intercalleurope.com Information Hotline 0871 7000 170 +44 (0)1452 546742 conferencing@intercalleurope.com Reservations 0870 043 4167 +44 (0)1452 553456 resv@intercalleurope.com

More information

Module 1. 4 Login-Send Message to Teacher

Module 1. 4 Login-Send Message to Teacher Module 1. 4 Login-Send Message to Teacher Students, in this lesson you will 1. Learn to login to your InterAct account. 2. Learn how to send an email message. Logging on to Students Online 1. Launch the

More information

To install ZCO. Once you have the above information and the ZCO.msi installation file, use the following instructions to install ZCO.

To install ZCO. Once you have the above information and the ZCO.msi installation file, use the following instructions to install ZCO. How to Install and Use Zimbra Connector for Outlook The Zimbra Connector for Outlook (ZCO) provides real time two-way synchronization of email messages, folders including the Chats folder, tags, contacts,

More information

Microsoft Lync for MAC The Essentials

Microsoft Lync for MAC The Essentials Microsoft Lync for MAC The Essentials Training User Guide Sue Pejic Training Coordinator Information Technology Services Email : spejic@swin.edu.au Mobile : 0419 891 113 Table of Contents What is Lync

More information

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved.

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved. Reference Guide Pogoplug Team Reference Guide Table of Contents Table of Contents 1. What s Included 2. Getting Started 3. Customizing the Pogoplug Interface a. Custom UI b. Custom Domain Name c. Custom

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information

Step One Check for Internet Connection

Step One Check for Internet Connection Connecting to Websites Programmatically with Android Brent Ward Hello! My name is Brent Ward, and I am one of the three developers of HU Pal. HU Pal is an application we developed for Android phones which

More information

easy-to-use platform. Our solution offers the best video, audio and screen-sharing quality across Window, Mac, ios, Android

easy-to-use platform. Our solution offers the best video, audio and screen-sharing quality across Window, Mac, ios, Android Getting Started On PC And Mac What is Zoom? Zoom, the cloud meeting company, unifies cloud video conferencing, simple online meetings and mobile collaboration into one easy-to-use platform. Our solution

More information

Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk

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.

More information

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform Get Started with LeadSquared Guide for Marketing Users Complete lead to revenue platform Bookmark LeadSquared Login Page Login to LeadSquared at https://run.leadsquared.com (Bookmark the URL) LeadSquared

More information

support@desky.io Desky Helpdesk Software: Agent Interface Quick Start Guide

support@desky.io Desky Helpdesk Software: Agent Interface Quick Start Guide support@desky.io Desky Helpdesk Software: Agent Interface Quick Start Guide The Desky helpdesk platform is designed to make it easy to handle problems and questions from your users. Your helpdesk ties

More information

Norton Family Product Manual

Norton Family Product Manual Norton TM Family Product Manual Care for our Environment; It's the right thing to do. Symantec has removed the cover from this manual to reduce the Environmental Footprint of our products. This manual

More information

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC.

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC. E-mail Attachments Hi, I m Sarah. I m going to show you how to download files people send to you in emails, and how to send your own files to other people using your email. We ll follow along with Amy,

More information

Life after Microsoft Outlook Google Apps

Life after Microsoft Outlook Google Apps Welcome Welcome to Gmail! Now that you ve switched from Microsoft Outlook to, here are some tips on beginning to use Gmail. Google Apps What s Different? Here are some of the differences you ll notice

More information

Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5.

Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5. Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5.3 Selected Range Preview List 5.4 Scheduling of Messages 5.5 Scheduled

More information

Unified Communicator Advanced Training Handout

Unified Communicator Advanced Training Handout Unified Communicator Advanced Training Handout About Unified Communicator Advanced (UCA) Video Summary (must have access to the internet for this to launch) http://www.mitel.tv/videos/mitel_unified_communicator_advanced_na

More information

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Index CDR REPORT... 3 CDR FILTER... 3 CDR REPORT DATA FIELDS... 4 CDR REPORT OPERATIONS... 5 CDR CSV FILE... 6 API CONFIGURATION...

More information

Facebook Smart Card FB 121211_1800

Facebook Smart Card FB 121211_1800 Facebook Smart Card FB 121211_1800 Social Networks - Do s and Don ts Only establish and maintain connections with people you know and trust. Review your connections often. Assume that ANYONE can see any

More information

Jovision Android Monitoring Software Operational Manual

Jovision Android Monitoring Software Operational Manual Jovision Android Monitoring Software Operational Manual Welcome to use Jovision s Android monitoring software. This software can be searched from Google play. User just input CloudSEE,and find CloudSEE

More information

BreezingForms Guide. 18 Forms: BreezingForms

BreezingForms Guide. 18 Forms: BreezingForms BreezingForms 8/3/2009 1 BreezingForms Guide GOOGLE TRANSLATE FROM: http://openbook.galileocomputing.de/joomla15/jooml a_18_formulare_neu_001.htm#t2t32 18.1 BreezingForms 18.1.1 Installation and configuration

More information

Documentation to use the Elia Infeed web services

Documentation to use the Elia Infeed web services Documentation to use the Elia Infeed web services Elia Version 1.0 2013-10-03 Printed on 3/10/13 10:22 Page 1 of 20 Table of Contents Chapter 1. Introduction... 4 1.1. Elia Infeed web page... 4 1.2. Elia

More information

Quick Start Guide. Overview

Quick Start Guide. Overview Quick Start Guide UPDATED: JUNE 22, 2012 Overview Onehub makes it easy to securely store, organize, and share files in the cloud. Onehub organizes information in Workspaces, secure spaces that make it

More information

MOBILITY FOR iphone USER GUIDE

MOBILITY FOR iphone USER GUIDE MOBILITY FOR iphone USER GUIDE VERSION 20.0.2 401 Market Street, First Floor Philadelphia, PA 19106 877.258.3722 www.alteva.com Table of Contentsl 1. About Alteva Mobility for iphone... 3 2. Installation...

More information

// table of contents //

// table of contents // // A Guide to the Talkdesk and LiveChat Integration // table of contents // 01 // Overview & Advantages of the Talkdesk and LiveChat Integration // 04 02 // 4 Ways to Use the Talkdesk and LiveChat Integration

More information