Remote API V1.1 Documentation

Size: px
Start display at page:

Download "Remote API V1.1 Documentation"

Transcription

1 Remote API V1.1 Documentation

2 Disclaimer: This manual is licensed under Cellunlocker.net. The information contained in these materials is proprietary and confidential to Cellunlocker.net and/or its subsidiaries or affiliates and is provided for the sole use of the individual or entity to whom it is addressed. These materials must be kept in the strictest confidence. These materials may contain third-party copyright and/or trademark materials, the use of which has not always been specifically authorized by the intellectual property owner. All copyrights and/or trademarks contained in these materials are the sole and exclusive property of their respective owners. Information in this document is subject to change without notice. No portion of these materials may be reprinted, republished, modified, reproduced, sold, disseminated, disclosed or distributed in any form to any other party without the express written consent of Cellunlocker.net. Copyright 2017 Cellunlocker.net. All rights reserved.

3 Table of Contents 1.0 INTRODUCTION Change Log SETUP Programming Language Prerequisites API Key Parsing JSON Basic Authentication and Submitting Requests POST Requests COMMANDS Accounts Get Account Information Tools Get Unlock Tools Get Specific Unlock Tool Orders Get Order History Get Order By Order ID Get Pending Orders Search Order By IMEI Or Order ID Submit Order Instructions Get Instructions Get Specific Instructions Error Responses Error Response Format API Class Prerequisites Setup Commands Get Account Information Get Tools Get Specific Tool Get Order History Get Order By Order ID Get Pending Orders Search Order Submit Order Get Instructions...24

4 1.0 INTRODUCTION Cellunlocker.net API allows resellers to connect and perform website transactions without visiting the Cellunlocker.net website. It can be seamlessly integrated allowing resellers to submit orders through their own websites, segregating reseller customers and Cellunlocker.net. Cellunlocker.net provides the quickest turnaround times with great support from our staff, ensuring resellers will also provide the best service to their customers. 1.1 Change Log Date Version Description First release No longer using basic authentication 1 / 24

5 2.0 SETUP 2.1 Programming Language This document is written with references and examples using PHP programming language. PHP is not a requirement for this API and this document will be easy to follow without having experience in PHP. As long as your environment can execute HTTP requests, equivalent procedures can be executed. 2.2 Prerequisites API Key You will need an API key associated with your account. Enter Cellunlocker.net website with your credentials and hover the Remote API tab at the bottom of the menu bar. Select API Key and click on [Generate New API Key] button to generate an API key for your account Parsing JSON All responses from the API server will be in JSON format. PHP has native support parsing JSON strings, please refer to your environment's manual regarding JSON support. 2 / 24

6 2.3 Basic Authentication and Submitting Requests To authenticate with the API server, enter your API key as a URL parameter in the url variable, please check the example below. The password can be ignored or entered as x. The following below is an example of using the curl extension. In curl, the username and password is entered as one string separated by a colon. $apikey = xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx ; $url = $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); // other curl options entered here... // get data in response variable $response = json_decode(curl_exec($ch),true); curl_close($ch); : 200 OK { "name":"company Name", "credits":"0.00", "tier":# } Data will be stored as an array after the JSON data has been parsed. 3 / 24

7 2.3.1 POST Requests All request types not GET are required to submit data in JSON format. Below is an example of submitting a POST request in curl. if($requestmethod == 'POST'){ $json = json_encode($data); } curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $json); curl_setopt($ch, CURLOPT_HTTPHEADER, array( ); 'Content-Type: application/json', 'Content-Length: '. strlen($json)) 4 / 24

8 3.0 COMMANDS 3.1 Accounts Get Account Information GET name Company Name credits 0.00 tier Tier # 5 / 24

9 3.2 Tools Get Unlock Tools Get list of tools available for your account. GET array: toolid toolname description Tool ID sorttype reqimei reqmake reqmodel reqmep reqpin reqserial reqnetwork reqservicetag reqkbh reqtype reqother reqprovider reqprd supportedmakes hasaddparams (?) Tool Name Description Carrier / Manufacturer / Software Array of supported makes (?) In some tools, additional information is required. Please use "get specific tool" API call to verify. Please check all req(name) to see what is required and use the data (if provided) in get specific tool call when submitting an order. 6 / 24

10 3.2.2 Get Specific Unlock Tool Get a specific unlock tool available for your account. GET toolid Tool ID toolname Tool Name description Description sorttype Carrier / Manufacturer / Software reqimei reqmake reqmodel reqmep reqpin reqserial reqnetwork reqservicetag reqkbh reqtype reqother reqprovider reqprd supportedmakes Array of supported makes addparams (?) Additional parameters if required for tool (?) In some tools, additional information is required. Please check all req(name) to see what is required and use the data (if provided) in addparams when submitting an order. 7 / 24

11 3.3 Orders Get Order History Get completed order history in descending order. GET orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed 8 / 24

12 3.3.2 Get Order By Order ID Get order by order id. If it does not exist, an error is returned. GET pendingorders: orderid Order ID imei IMEI make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered completedorders: orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed Error Response code 404 message No pending or completed orders found with order ID: xxxxxxxx 9 / 24

13 3.3.3 Get Pending Orders GET numorders Number of Orders orders: orderid Order ID imei IMEI make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered Error Response code 404 message You have no pending orders 10 / 24

14 3.3.4 Search Order By IMEI Or Order ID GET { imei=# or orderid=# } numorders Number of Orders orders: orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed Error Response imei: code 404 message Could not find an order with imei: xxxxxx order id: code 404 message Could not find an order with id: xxxxxx 11 / 24

15 3.3.5 Submit Order POST Input Fields Type Description imeis (*) array An array containing imei(s) for your order toolid (*) int Tool ID for order notes string Notes regarding your order opt string Results will be sent to this params (?) array Additional parameters (make, model, network, mep, etc) Example: (*) Required fields (?) Additional parameters are required for some tools. Please use get specific tool API call to verify. Below is an example of including extra parameters. $order['imeis'] = array( ' ', ' ' ); $order['toolid'] = 68; $order['notes'] = 'Ordered by API'; $order['params'] = array( 'make' => 'Blackberry', 'model' => '9800', 'network' => '512' ); $json = json_encode($order); status OK orderid xxxxxx message Order submitted successfully. Error Response code 400 message Reason 12 / 24

16 3.4 Instructions Get Instructions Get instructions for all manufacturers. GET array: makeid Make ID makename Make Name instructions Get Specific Instructions Get a specific instruction based on id. GET makeid Make ID makename Make Name instructions / 24

17 3.5 Error Responses Error Response Format Errors will be returned with a code and a message. HTTP <code same as below> { code :, message : } 14 / 24

18 4.0 API Class A class performing all API commands is available in PHP. For convenience, resellers who are unfamiliar with REST can use this class to communicate with the API server. In future updates, there may be new features available in REST but not incorporated in the API class. We encourage resellers to use the REST API however, we are confident that resellers who use the Cellunlocker.net class will still access the core features available. 4.1 Prerequisites The curl extension must be installed before using the API class. This extension is included since PHP and is most likely installed in your PHP setup. 4.2 Setup Initialize the API class and set your API key using the setapikey method. include_once('api.php'); $cu = new API(); $cu->setapikey('xxxxx'); // insert your API key here The API class is ready to communicate with Cellunlocker.net. 15 / 24

19 4.3 Commands Get Account Information $result = $cu->getaccount(); name Company Name credits 0.00 tier Tier # 16 / 24

20 4.3.2 Get Tools Get list of tools available for your account. $result = $cu->gettools(); toolid Tool ID toolname Tool Name description Description sorttype Carrier / Manufacturer / Software reqimei reqmake reqmodel reqmep reqpin reqserial reqnetwork reqservicetag reqkbh reqtype reqother reqprovider reqprd supportedmakes Array of supported makes hasaddparams (?) (?) In some tools, additional information is required. Please use "get specific tool" API call to verify. Please check all req(name) to see what is required and use the data (if provided) in get specific tool call when submitting an order. 17 / 24

21 4.3.3 Get Specific Tool Get a specific tool available for your account. $id = 1; // set the tool ID here $result = $cu->gettools($id); toolid Tool ID toolname Tool Name description Description sorttype Carrier / Manufacturer / Software reqimei reqmake reqmodel reqmep reqpin reqserial reqnetwork reqservicetag reqkbh reqtype reqother reqprovider reqprd supportedmakes Array of supported makes addparams (?) Additional parameters if required for tool (?) In some tools, additional information is required. Please check all req(name) to see what is required and use the data (if provided) in addparams when submitting an order. 18 / 24

22 4.3.4 Get Order History Get completed order history in descending order. $result = $cu->getorderhistory(); orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed 19 / 24

23 4.3.5 Get Order By Order ID Get order by order id. If it does not exist, an error is returned. $orderid = 12; // your order id $result = $cu->getorder($orderid); pendingorders: orderid Order ID imei IMEI make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered completedorders: orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed Error Response code 404 message No pending or completed orders found with order ID: xxxxxxxx 20 / 24

24 4.3.6 Get Pending Orders $result = $cu->getpendingorders(); numorders Number of Orders orders: orderid Order ID imei IMEI make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered Error Response code 404 message You have no pending orders 21 / 24

25 4.3.7 Search Order Search order by imei or order ID. $field = orderid ; // $field = imei ; $search = ; $result = $cu->searchorder($field, $search); numorders Number of Orders orders: orderid Order ID imei IMEI unlockcode Unlock Code make Phone Make model Phone Model status Order Status toolname Tool Name notes Notes dateordered Date Ordered datecompleted Date Completed Error Response imei: code 404 message Could not find an order with imei: xxxxxx order id: code 404 message Could not find an order with id: xxxxxx 22 / 24

26 4.3.8 Submit Order Input Field Type Description toolid (*) int Tool ID for order imeis (*) array An array containing imei(s) for your order params (?) array Additional parameters (make, model, network, mep, etc) notes string Notes regarding your order opt string Results will be sent to this Example: (*) Required fields (?) Additional parameters are required for some tools. Please use get specific tool API call to verify. Below is an example of including extra parameters. $toolid = 68; $imeis = array( ' ', ' ', ' ' ); $params = array( 'make' => 'Blackberry', 'model' => '9800', 'network' => '512' ); $notes = Ordered through API ; $result = $cu->submitorder($toolid, $imeis, $params, $notes); status OK orderid xxxxxx message Order submitted successfully. Error Response code 400 message Reason 23 / 24

27 4.3.9 Get Instructions Get instructions for all manufacturers. $result = $cu->getinstructions(); array: makeid Make ID makename Make Name instructions... Get a specific instruction based on id. $id = 1; $result = $cu->getinstructions($id); makeid Make ID makename Make Name instructions / 24

API USER GUIDE MARKETING MESSAGES & BROADCASTS

API USER GUIDE MARKETING MESSAGES & BROADCASTS API USER GUIDE MARKETING MESSAGES & BROADCASTS General Overview So, what do you want to do? 3 3 Marketing Messages with replies 4 First, let s send the messages Advanced API developers note Next, let s

More information

Integration REST Text2Speech Version 1.1

Integration REST Text2Speech Version 1.1 1 Integration REST Text2Speech Version 1.1 2 Table of Contents Introduction P. 3 Technical Platform Request for shipments voicemails P. 4 JSON request P. 4 Example request CURL P. 5 Sample PHP request

More information

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners.

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners. API The specifications and information in this document are subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. This document may

More information

ARTIO SMS Services HTTP API Documentation

ARTIO SMS Services HTTP API Documentation ARTIO SMS Services HTTP API Documentation David Jozefov Michal Unzeitig Copyright 2013 - ARTIO International Co. ARTIO SMS Services HTTP API Documentation ARTIO Publication date: 4.9.2013 Version: 1.0.1

More information

Connect Media Bulk SMS API Documentation

Connect Media Bulk SMS API Documentation Connect Media Bulk SMS API Documentation All requests are submitted through the POST Method Base URL: http://www.connectmedia.co.ke/user-board/?api Information About Parameters: PARAMETERS username Your

More information

InstaMember USER S GUIDE

InstaMember USER S GUIDE InstaMember USER S GUIDE InstaMember Licensing API Guide 1 InstaMember Licensing API Guide The InstaMember licensing feature is designed to integrate seamlessly with your web applications or scripts. It

More information

Errors Message Bad Authentication Data Code 215 User_timeline

Errors Message Bad Authentication Data Code 215 User_timeline Errors Message Bad Authentication Data Code 215 User_timeline ("errors":(("code":215,"message":"bad Authentication data. "))) RestKit.ErrorDomain Code=- 1011 "Expected status code in (200-299), got 400"

More information

Sending Documents to Tenstreet API Guide (rev 06/2017)

Sending Documents to Tenstreet API Guide (rev 06/2017) Sending Documents to Tenstreet API Guide (rev 06/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

SortMyBooks API (Application programming

SortMyBooks API (Application programming SortMyBooks API (Application programming interface) Welcome to Sort My Books. This documentation will help you to get started with SortMyBooks API. General Considerations SortMyBooks works with objects

More information

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1 SMS Gateway API & Application Technical Documentation Revision 1 Current as at 10 th August 2010 Document ID: DOC-SMS-API-R1 Information in this document is subject to change without notice. This document

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API. API Documentation Link : https://vip.bitcoin.co.id/trade api Our API is very similar with BTC-e s API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

More information

API DOCUMENTATION INDODAX.COM

API DOCUMENTATION INDODAX.COM API DOCUMENTATION INDODAX.COM v1.8 Last updated: 9 April 2018 Table of Contents Public API 3 Private API 3 Authentication 4 Responses 4 API Methods 5 getinfo 5 transhistory 6 trade 7 tradehistory 8 openorders

More information

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018)

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy...

More information

Gengo API v1 / v1.1 Documentation

Gengo API v1 / v1.1 Documentation Gengo API v1 / v1.1 Documentation For v1 and v1.1 of the Gengo API v1 v1.1 Example API Authenticated Call Callback s Parameter Payloads Job Payload For responses Job Payload For submissions API Methods

More information

Sending Data Updates to Tenstreet API Guide (rev 10/2017)

Sending Data Updates to Tenstreet API Guide (rev 10/2017) Sending Data Updates to Tenstreet API Guide (rev 10/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

Protecting SugarCRM with SafeNet Authentication Manager

Protecting SugarCRM with SafeNet Authentication Manager Protecting SugarCRM with SafeNet Authentication Manager Version 8.2 Integration Guide Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document

More information

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016 API By Sébastien Lamanna LEADFOX TECHNOLOGY INC. Created on January 6, 2016 Latest update February 9, 2016 Revisions History Version By Date 1.0 1.1 Initial version Sébastien Lamanna Jan. 6, 2016 Add Contact/GetHistory

More information

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University ONE SOCIAL A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements for the Degree Master of Computer Science

More information

2. On completing your registration you will get a confirmation . Click on the link or paste the link into your browser to validate the account.

2. On completing your registration you will get a confirmation  . Click on the link or paste the link into your browser to validate the account. Bongo Live SMS API v1.4 Revision History: v 1.1 - Initial Release. v1.2 19/6/2013 - Added Balance check and Sender Name Check v1.3 15/10/2013 Added incoming sms specifications v1.4 13/05/2014 Added API

More information

ZSN How to register as a potential supplier

ZSN How to register as a potential supplier ZSN How to register as a potential supplier Copyright All Intellectual Property rights in this work belong to Zycus Inc. The information contained must not be reproduced or distributed to others in any

More information

ZSN How to register as a potential supplier

ZSN How to register as a potential supplier ZSN How to register as a potential supplier Copyright All Intellectual Property rights in this work belong to Zycus Inc. The information contained must not be reproduced or distributed to others in any

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

API Technical Reference

API Technical Reference API Technical Reference Copyright 1996/2015, Quality System Solutions Limited Unit 8 Lansdowne Court Bumpers Way, Chippenham, Wiltshire, SN13 0RP United Kingdom Tel: +44 (0)1249 566010 E-mail: support@callprocrm.com

More information

Trusted Source SSO. Document version 2.3 Last updated: 30/10/2017.

Trusted Source SSO. Document version 2.3 Last updated: 30/10/2017. Trusted Source SSO Document version 2.3 Last updated: 30/10/2017 www.iamcloud.com TABLE OF CONTENTS 1 INTRODUCTION... 1 2 PREREQUISITES... 2 2.1 Agent... 2 2.2 SPS Client... Error! Bookmark not defined.

More information

Avaya Software Keycode Installation Guide

Avaya Software Keycode Installation Guide Avaya Software Keycode Installation Guide 2010 Avaya Inc. P0607323 04 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

Search for Dynamics v Installation Guide

Search for Dynamics v Installation Guide Search for Dynamics v1.4.3.1 Installation Guide SharePoint 2013 and 2016 Contents Chapter 1: Prerequisites... 3 Chapter 2: Install Search for Dynamics... 4 Install SharePoint Components...4 Install Permissive

More information

LIPNET OUTBOUND API FORMS DOCUMENTATION

LIPNET OUTBOUND API FORMS DOCUMENTATION LIPNET OUTBOUND API FORMS DOCUMENTATION LEGAL INAKE PROFESSIONALS 2018-03-0926 Contents Description... 2 Requirements:... 2 General Information:... 2 Request/Response Information:... 2 Service Endpoints...

More information

Brain Corporate Bulk SMS

Brain Corporate Bulk SMS Brain Corporate Bulk SMS W e S i m p l y D e l i v e r! API Documentation V.2.0 F e b r u a r y 2 0 1 9 2 Table of Contents Sending a Quick Message... 3 API Description... 3 Request Parameter... 4 API

More information

GS1 US Data Hub Product

GS1 US Data Hub Product GS1 US Data Hub 3.4 Product via This guide is specifically written for Solution Partners who are certified under the CCP program and augments current GS1 US Developer documentation. For information on

More information

Infor LN HTML5 Workbench Administration Guide

Infor LN HTML5 Workbench Administration Guide Infor LN HTML5 Workbench Administration Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

API Spec Sheet For HLR v1.4

API Spec Sheet For HLR v1.4 API Spec Sheet For HLR v1.4 INTRODUCTION The Wholesale SMS HLR API provides an easy to use method of accessing the HLR (Home Location Register) for all networks worldwide that support HLR. For large batch

More information

Deltek Touch for Maconomy. Touch 2.2 Multitenancy Setup Guide

Deltek Touch for Maconomy. Touch 2.2 Multitenancy Setup Guide Deltek Touch for Maconomy Touch 2.2 Multitenancy Setup Guide July 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

Support Backups and Secure Transfer Server Changes - i-cam

Support Backups and Secure Transfer Server Changes - i-cam Support Backups and Secure Transfer Server Changes - i-cam 3.1.24 Contents What is the Secure Transfer Server?... 2 Initial Setup in i-cam 3.1.24... 2 Getting your account credentials... 2 Setting your

More information

Integration Guide. SafeNet Authentication Service. Protecting SugarCRM with SAS

Integration Guide. SafeNet Authentication Service. Protecting SugarCRM with SAS SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Deltek Touch CRM Release Notes for Ajera CRM, GovWin Capture Management, and Vision

Deltek Touch CRM Release Notes for Ajera CRM, GovWin Capture Management, and Vision Deltek Touch CRM 1.6.3 March 2016 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may exist. The recipient of

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 System Broadcast Application Guide Revision 1.0 October 2018 October 2018 Dcoument # XXXX Legal Disclaimers and Copyrights This document contains information on products,

More information

Deltek Vision 6.X. Microsoft SQL Server Reporting Services (SSRS) Licensing FAQ

Deltek Vision 6.X. Microsoft SQL Server Reporting Services (SSRS) Licensing FAQ Deltek Vision 6.X Microsoft SQL Server Reporting Services (SSRS) July 7, 2011 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or

More information

HL7 Import for CellTrak

HL7 Import for CellTrak HL7 Import for CellTrak Procura Health Management Systems Contact Procura Corporate Office 623 Discovery Street, Victoria, BC, Canada V8T 5G4 Phone: 1.877.776.2872 FAX: 250.380.1866 support@goprocura.com

More information

Lawson Budgeting and Planning

Lawson Budgeting and Planning And thus knowledge itself is power... - Sir Francis Bacon Lawson Budgeting and Planning Security Overview National Heritage Academies Version 9.0.1 Published December 2011 Author: Allan Ingle Release 1

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Configuring Cisco StadiumVision Director for External Triggers

Configuring Cisco StadiumVision Director for External Triggers Configuring Cisco StadiumVision Director for External Triggers First Published: May 29, 2012 This document is intended for Cisco StadiumVision Director administrators who are responsible for working with

More information

Samsung Knox Mobile Enrollment. VMware Workspace ONE UEM 1902

Samsung Knox Mobile Enrollment. VMware Workspace ONE UEM 1902 Samsung Knox Mobile Enrollment VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Content Introduction 3 WebPay (webform) 4 WebBlock (webform) 6 Pay (gateway) 4 Block (gateway) 6 Token (gateway) 6 Charge (webform/gateway) 7 Cancel (webform/gateway)

More information

Update Your Company Profile in M-Inform

Update Your Company Profile in M-Inform in M-Inform As a U-M employee, student, or trainee, you are expected to disclose your ownership of, or relationship with, any company you start in order to option, license, distribute, or commercialize

More information

SDMS Assessor Web Portal User Manual PMKVY2.0

SDMS Assessor Web Portal User Manual PMKVY2.0 SDMS Assessor Web Portal User Manual PMKVY2.0 29 th MAY, 2017 Campus Management Corp., Campus Management, Talisma, CampusNexus, the Campus Management logo, the CampusNexus logo, and the Talisma logo are

More information

Infor LN HTML5 Workbench Administration Guide

Infor LN HTML5 Workbench Administration Guide Infor LN HTML5 Workbench Administration Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

World Of Wireless. Sales Execution Team

World Of Wireless. Sales Execution Team World Of Wireless Sales Execution Team 2016 AT&T Intellectual Property. All rights reserved. AT&T, Globe logo, Mobilizing Your World and DIRECTV are registered trademarks and service marks of AT&T Intellectual

More information

My Publications Quick Start Guide

My Publications Quick Start Guide IHS > Decision Support Tool My Publications Quick Start Guide January 28, 2011 Version 2.0 2011 IHS, All Rights Reserved. All trademarks belong to IHS or its affiliated and subsidiary companies, all rights

More information

BCM50 Rls 6.0. Router IP Routing. Task Based Guide

BCM50 Rls 6.0. Router IP Routing. Task Based Guide BCM50 Rls 6.0 Router IP Routing Task Based Guide Copyright 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document is complete

More information

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT SalesLogix NOTICE The information contained in this document is believed to be accurate in all respects but is not

More information

BlackBerry AtHoc Networked Crisis Communication. Smart Card Authentication

BlackBerry AtHoc Networked Crisis Communication. Smart Card Authentication BlackBerry AtHoc Networked Crisis Communication Smart Card Authentication Release 7.6, September 2018 Copyright 2017 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied, disclosed,

More information

Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007

Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007 Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007 Avaya Communication Server 1000 Release 7.5 Document Status: Standard Document Version: 04.01 Document Number: NN43001-123

More information

Sending Application Data to Tenstreet API Guide

Sending Application Data to Tenstreet API Guide Sending Application Data to Tenstreet API Guide Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support Requests...

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

TEOCO Data Center Connectivity. Overview

TEOCO Data Center Connectivity. Overview TEOCO Data Center Connectivity Overview Confidentiality, Copyright Notice & Disclaimer Due to a policy of continuous product development and refinement, TEOCO (and its affiliates, together TEOCO ) reserves

More information

NextGen Patient Portal. User Guide.

NextGen Patient Portal. User Guide. 2.4.3 NextGen Patient Portal User Guide www.nextgen.com Copyright 2014-2017 QSI Management, LLC. All Rights Reserved. The registered trademarks listed at http://www.qsii.com/legal_notices.shtml are the

More information

BlackBerry AtHoc Networked Crisis Communication. BlackBerry UEM Notifications Operator Guide

BlackBerry AtHoc Networked Crisis Communication. BlackBerry UEM Notifications Operator Guide BlackBerry AtHoc Networked Crisis Communication BlackBerry UEM Notifications Operator Guide 1.0, March 2018 Copyright 2017 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied,

More information

October Oracle Application Express Statement of Direction

October Oracle Application Express Statement of Direction October 2017 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

<tr><td>last Name </td><td><input type="text" name="shippingaddress-last-name"

<tr><td>last Name </td><td><input type=text name=shippingaddress-last-name // API Setup Parameters $gatewayurl = 'https://secure.payscout.com/api/v2/three-step'; $APIKey = '2F822Rw39fx762MaV7Yy86jXGTC7sCDy'; // If there is no POST data or a token-id, print the initial Customer

More information

Black Box DCX3000 / DCX1000 Using the API

Black Box DCX3000 / DCX1000 Using the API Black Box DCX3000 / DCX1000 Using the API updated 2/22/2017 This document will give you a brief overview of how to access the DCX3000 / DCX1000 API and how you can interact with it using an online tool.

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 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

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

ExtraHop 7.3 ExtraHop Trace REST API Guide ExtraHop 7.3 ExtraHop Trace REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

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

PrintShop Mail Web. Web Integration Guide

PrintShop Mail Web. Web Integration Guide PrintShop Mail Web Web Integration Guide Copyright Information Copyright 1994-2010 Objectif Lune Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

PeopleFluent OrgPublisher HTML5 Installation and Configuration Guide

PeopleFluent OrgPublisher HTML5 Installation and Configuration Guide July 30, 2017 Document Version Number: 1.0 Copyright 2017, PeopleFluent. All Rights Reserved. Contents Contents Preface...1 Audience... 1 Intent... 1 Before You Begin... 1 Document Revision... 1 Document

More information

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it.

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it. Mobile App Windows Authentication & SSL Config Revised: 08/02/2017 Job Aid This Job Aid is intended for agency IT staff and explains how to enable Windows Authentication and SSL for your mobile applications

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Decision Power Insight TM. Training Module I. (TeleCheck Decisioning Only) Accessing eport

Decision Power Insight TM. Training Module I. (TeleCheck Decisioning Only) Accessing eport Decision Power Insight TM (TeleCheck Decisioning Only) Training Module I Accessing eport Confidentiality / Non-Disclosure Confidentiality, non-disclosure, and legal disclaimer information The contents

More information

Entrust PartnerLink Login Instructions

Entrust PartnerLink Login Instructions Entrust PartnerLink Login Instructions Contents Introduction... 4 Purpose 4 Overview 4 Prerequisites 4 Instructions... 5 Entrust is a registered trademark of Entrust, Inc. in the United States and certain

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using the Evernote Adapter Release 16.3 E69234-05 September 2016 This guide describes how to configure and add the Evernote Adapter to an Oracle Integration Cloud Service integration. Oracle

More information

Instant HR Auditor Installation Guide

Instant HR Auditor Installation Guide Instant HR Auditor Installation Guide Fall, 2015 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software

More information

BlackBerry AtHoc Networked Crisis Communication. Self Service User Guide

BlackBerry AtHoc Networked Crisis Communication. Self Service User Guide BlackBerry AtHoc Networked Crisis Communication Self Service User Guide Release 7.6, September 2018 Copyright 2014 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied, disclosed,

More information

DIGIPASS Authentication for Check Point VPN-1

DIGIPASS Authentication for Check Point VPN-1 DIGIPASS Authentication for Check Point VPN-1 With IDENTIKEY Server 2009 Integration VASCO Data Security. Guideline All rights reserved. Page 1 of 36 Disclaimer Disclaimer of Warranties and Limitations

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

Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications

Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications Version: 20.1 Publication date: 6 th January 2015 www.kapow.co.uk Kapow SMS Gateway All content herein including images,

More information

Customer Online Support Demonstration. 1

Customer Online Support Demonstration.  1 Customer Online Support Demonstration 1 Introduction SATHYA is committed to simplifying and improving your support experience. As we launch our enhanced online case management capabilities, you will see

More information

SAP Business All-in-One Getting Started

SAP Business All-in-One Getting Started User Manual Getting Started Date: October 2013 Copyright 2013 Supernova Consulting Ltd. All rights reserved. The current version of the copyrights, trademarks, and disclaimers at www.supernova-consulting.com/files/supernova_disclaimer.pdf

More information

HTTPS API Specifications

HTTPS API Specifications HTTPS API Specifications June 17, 2016 P a g e 1 - HTTPS API Specifications Contents HTTPS API Overview... 3 Terminology... 3 Process Overview... 3 Parameters... 4 Responses... 5 Examples... 6 PERL on

More information

NMI Query API. 6/30/2008 Network Merchants Inc (NMI)

NMI Query API. 6/30/2008 Network Merchants Inc (NMI) NMI Query API 6/30/2008 Network Merchants Inc (NMI) 847 352 4850 Contents Overview... 3 Query API... 3 Communication... 3 Query API Variables... 4 Transaction POST URL... 5 Unlock Payment Information...

More information

Learn more at solidthinking.com solidthinking, Inc. All Rights Reserved. All other trademarks are properties of their respective owners.

Learn more at solidthinking.com solidthinking, Inc. All Rights Reserved. All other trademarks are properties of their respective owners. Learn more at solidthinking.com 2016 solidthinking, Inc. All Rights Reserved. All other trademarks are properties of their respective owners. Contents 1 Introduction... 2 1.1 Installing Click2Extrude Polymer...3

More information

IP Office 6.1 Embedded Voic Mailbox User Guide

IP Office 6.1 Embedded Voic Mailbox User Guide Embedded Voicemail Mailbox User Guide 15-604067 Issue 08a - (18 August 2010) 2010 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

Set Up Rules Palette

Set Up Rules Palette Oracle Insurance Policy Administration Set Up Rules Palette Installation Instructions Step 3 Version 9.5.0.0 Documentation Part Number: E23638_01 June 2012 Copyright 2009, 2012 Oracle and/or its affiliates.

More information

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide One Identity Starling Two-Factor Desktop Login 1.0 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

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

Guide to your CGIAR Network account Self Service tool

Guide to your CGIAR Network account Self Service tool Guide to your CGIAR Network account Self Service tool The self-service tool allows you to: Change Password: Change your current password from anywhere using your web browser. Reset Password: Reset your

More information

Upgrading the Procura Database

Upgrading the Procura Database Procura Health Management Systems Contact Procura Corporate Office 600-1112 Fort Street, Victoria, BC, Canada V8V 3K8 Phone: 1.877.776.2872 FAX: 250.380.1866 support@goprocura.com Software version Procura

More information

PayThankYou LLC Privacy Policy

PayThankYou LLC Privacy Policy PayThankYou LLC Privacy Policy Last Revised: August 7, 2017. The most current version of this Privacy Policy may be viewed at any time on the PayThankYou website. Summary This Privacy Policy covers the

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Desktop App User Guide

Desktop App User Guide BlackBerry AtHoc Networked Crisis Communication Desktop App User Guide Microsoft Windows and Apple macos Platforms Release 7.0.0.2, July 2017 Copyright 2017 BlackBerry Limited. All Rights Reserved. This

More information

SIX Trade Repository AG

SIX Trade Repository AG May 2017 Table of contents 1.0 Introduction 3 1.1 Purpose 3 1.2 Acronyms 3 1.3 Version table 3 2.0 Required credentials and roles 4 2.1 Differentiation of certificate user names 4 2.2 Optional Setup using

More information

Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide. Avaya Communication Server 1000 Release 7.

Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide. Avaya Communication Server 1000 Release 7. Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide Avaya Communication Server 1000 Release 7.5 Document Status: Standard Document Number: P0888275 Document Version:

More information

Deltek Touch CRM for Deltek CRM. User Guide

Deltek Touch CRM for Deltek CRM. User Guide Deltek Touch CRM for Deltek CRM User Guide February 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

DIGITA PRACTICE ADVANCED MOBILE. Getting Started. version 1.0.x. Digita Support: Digita Sales: digita.

DIGITA PRACTICE ADVANCED MOBILE. Getting Started. version 1.0.x. Digita Support: Digita Sales: digita. DIGITA PRACTICE ADVANCED MOBILE Getting Started version 1.0.x Digita Support: 08450 180 909 Digita Sales: 08450 180 907 digita.com TL 31473 (03/01/2018) Copyright Information Text copyright 2010 2018 by

More information

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017

MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL. 31 January 2017 MULTI FACTOR AUTHENTICATION USING THE NETOP PORTAL 31 January 2017 Contents 1 Introduction... 2 1.1 Prerequisite for configuring the multi-factor authentication:... 2 1.1.1 On the Guest side... 2 1.1.2

More information

Configuring Cisco StadiumVision Director for External Triggers

Configuring Cisco StadiumVision Director for External Triggers Configuring Cisco StadiumVision Director for External Triggers First Published: May 29, 2012 Revised: March 8, 2013 This document is intended for Cisco StadiumVision Director administrators who are responsible

More information

Act! Link. Getting Started Guide

Act! Link. Getting Started Guide Act! Link Getting Started Guide 2012 Sage ACT! Link for Sage Simply Accounting Getting Started Guide Once you install Sage ACT! Link for Sage Simply Accounting, you can import your Sage Simply Accounting

More information

Deltek Touch CRM for Vision. User Guide

Deltek Touch CRM for Vision. User Guide Deltek Touch CRM for Vision User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may exist.

More information