Sendo.lv API documentation

Size: px
Start display at page:

Download "Sendo.lv API documentation"

Transcription

1 Sendo.lv API documentation REST JSON v1.0 Table of contents Sendo API documentation... 1 Test credentials:... 1 Production credentials:... 1 AVAILABLE-SERVICES... 2 Request... 2 Response... 3 NEW-SHIPMENT... 4 Request... 4 Response... 6 REQUEST-LABEL... 6 Request... 6 Response... 7 Send_request function... 8 Appendix... 9 Test credentials: Test user: Test token: UxDnS6DQfzGSuZkVmnnE Production credentials: Production user and token can be found on in Profile tab. Sendo API v1.0 1

2 AVAILABLE-SERVICES This function should be used to get the list of available services for specific address. Request /** The function that generates the right array structure can be found below. After the array is * Get available service codes (used in NEW-SHIPMENT request and their descriptions filled up with correct data, it can be passed to the send_request function. array * on success return list of service codes and description */ function create_available_services_request( { $request = array( 'user' => 10000, 'token' => 'UxDnS6DQfzGSuZkVmnnE', 'function' => 'AVAILABLE-SERVICES', // REQUIRED, user id // REQUIRED, auth token // REQUIRED, request code 'request_data' => array( 'country' => 'GB', // REQUIRED, 2 letter ISO country code 'pack_type' => 'envelope', // available values 'pack' / 'envelope' 'post_code' => 'N13 6JU', // REQUIRED, post code, max len 10 'items' => array( 0 => array( 'weight' => 0.5, // REQUIRED, weight in KG 'length' => 10, // REQUIRED, length in CM 'width' => 10, // REQUIRED, width in CM 'height' => 10 // REQUIRED, height in CM ; return $request; Sendo API v1.0 2

3 Response Sendo API v1.0 3

4 NEW-SHIPMENT This function should be used to submit new shipment. Request /** * Submit shipment data array * on success returns shipment id */ function create_new_shipment_request( { $boxes = array( 0 => array( 'weight' => 2.5, 'length' => 10, 'width' => 15, 'height' => 33 1 => array( 'weight' => 2.5, 'length' => 10, 'width' => 15, 'height' => 44, 2 => array( 'weight' => 2.5, 'length' => 10, 'width' => 15, 'height' => 44 ; // REQUIRED, weight in KG // REQUIRED, length in CM // REQUIRED, width in CM // REQUIRED, height in CM // REQUIRED, weight in KG // REQUIRED, length in CM // REQUIRED, width in CM // REQUIRED, height in CM // REQUIRED, weight in KG // REQUIRED, length in CM // REQUIRED, width in CM // REQUIRED, height in CM $test_address = array( 'name' => 'SIA Leonardo', // REQUIRED, receiver company or person name, max len 35 address_line_1 => 'Katlakalna 9', // REQUIRED, address, max len 100 address_line_2 => '', // OPTIONAL, address, max len 100 address_line_3 => '', // OPTIONAL, address, max len 100 'city' => 'Riga', // REQUIRED, city name, max len 35 'state_or_province' => '', // province/state, REQUIRED for US and Canada 'post_code' => '1021', // REQUIRED, post code, max len 10 'country' => 'LV', // REQUIRED, country code 'contact_name' => 'Dave Cross', // REQUIRED, contact, max len 35 'contact_phone_no' => ' ', // REQUIRED, contact phone no, max len 15 'contact_ ' => 'test@test.zz' // OPTIONAL, receivers , max len 100 ; Sendo API v1.0 4

5 $test_address2 = array( 'name' => 'test comp name', // REQUIRED, receiver company or person name, max len 35 address_line_1 => '56B Green Lanes', // REQUIRED, address, max len 100 address_line_2 => '56B Green Lanes', // OPTIONAL, address, max len 100 address_line_3 => '56B Green Lanes', // OPTIONAL, address, max len 100 'city' => 'London', // REQUIRED, city name, max len 35 'state_or_province' => '', // province/state, REQUIRED for US and Canada 'post_code' => 'N13 6JU', // REQUIRED, post code, max len 10 'country' => 'GB', // REQUIRED, country code 'contact_name' => 'John Doe', // REQUIRED, contact, max len 35 'contact_phone_no' => ' ', // REQUIRED, contact phone no, max len 15 'contact_ ' => 'test@test.zz' // OPTIONAL, receivers , max len 100 ; $request = array( 'user' => 10000, // REQUIRED, user id 'token' => 'UxDnS6DQfzGSuZkVmnnE', // REQUIRED, auth token 'function' => 'NEW-SHIPMENT', // REQUIRED, request code 'request_data' => array( 'service_code' => 'SLV-FEDEX-STANDARD', // REQUIRED, service code 'pack_type' => 'pack', // available values 'pack' / 'envelope' 'items' => $boxes, // REQUIRED, boxes dimensions and weight 'pickup_address' => $test_address, // OPTIONAL 'receivers_address' => $test_address2, // REQUIRED 'description' => 'spare parts', // REQUIRED, goods description, max len 50 /*REQUIRED*/ 'shipment_value' => array( 'currency' => 'EUR', // REQUIRED, EUR only 'value' => '15.55', // REQUIRED, decimal value, 'reason_for_export' => 'SOLD', // REQUIRED, allowed values are SOLD, GIFT, PERSONAL_EFFECTS // REPAIR_AND_RETURN, SAMPLE, NOT_SOLD 'reference' => 'ABC1235', // OPTIONAL, shipment reference, max len 35 'shipper_on_label' => 'CUSTOM', // OPTIONAL, shipper name on label, max len 35 'pickup_time' => ' :00', // OPTIONAL, pickup time for shipment ; Sendo API v1.0 5

6 Response REQUEST-LABEL This function should be used to get PDF format labels that must be printed out and placed on the packages cover. Request /** * Request base64 encoded PDF label data for shipment created by create_new_shipment_request array */ function create_get_label_request( { $request = array( 'user' => 10000, // REQUIRED, user id 'token' => 'UxDnS6DQfzGSuZkVmnnE', // REQUIRED, auth token 'function' => 'REQUEST-LABEL', // REQUIRED, request code /*REQUIRED*/ 'request_data' => array( 'shipment_id' => 'SLV ' // shipment_id returned by create_new_shipment_request ; return $request; Sendo API v1.0 6

7 Response Sendo API v1.0 7

8 Send_request function This function might be used to send the request to Sendo.lv webserver. /** * Send request using CURL type $request */ function send_request($request { $url = ; $content = json_encode($request; $curl = curl_init($url; curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST"; curl_setopt($curl, CURLOPT_POSTFIELDS, $content; curl_setopt($curl, CURLOPT_RETURNTRANSFER, true; curl_setopt($curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTP; if (DEVELOPMENT_ENVIRONMENT { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false; $json_response = curl_exec($curl; $status = curl_getinfo($curl, CURLINFO_HTTP_CODE; If ( $status!= 200 { echo "Error: call to URL $url failed with status $status,". " response $json_response,". " curl_error ". curl_error($curl. ",". " curl_errno ". curl_errno($curl; else { echo 'Response: '; echo "<pre>"; print_r(json_decode($json_response, TRUE; echo "</pre>"; curl_close($curl; Sendo API v1.0 8

9 Appendix For more information or assistance please contact us by s below: Developer "Sendo" Response in 24 hours, working days. Sendo API v1.0 9

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client.

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client. PonyExpress API V1 INTRODUCTION The PonyExpress API allows you to perform operations that you do with our web client. GETTING STARTED APIs requires a minimum of two mandatory headers. Content-Type : application/json

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

Data API v1.9. Splio Customer Platform SPLIO Customer Platform - DATA API EN v1.docx

Data API v1.9. Splio Customer Platform SPLIO Customer Platform - DATA API EN v1.docx Data API v1.9 Splio Customer Platform 2018-08-20 SPLIO Customer Platform - DATA API 1.9 - EN - 2018-08-20- v1.docx Table of Contents Introduction... 4 Access... 4 Base URL...4 Europe hosting... 4 Asia

More information

Data API v1.2. SPRING Contact & Campaign SPLIO - SPRING Contact and Campaign DATA API EN v1.3.

Data API v1.2. SPRING Contact & Campaign SPLIO - SPRING Contact and Campaign DATA API EN v1.3. v1.2 SPRING Contact & Campaign 2018-02-15 SPLIO - SPRING Contact and Campaign DATA API 1.2 - EN - 2018-02-15 - v1.3.docx Table of Contents Introduction... 4 Access... 4 Base URL...4 Europe hosting... 4

More information

BANKING CIRCLE WEB BULK UPLOAD

BANKING CIRCLE WEB BULK UPLOAD 18109 Training Manual - BULK UPLOAD_Layout 1 11/05/2016 10:06 Page 1 Freedom to BANKING CIRCLE WEB BULK UPLOAD SAXO PAYMENTS INTERNET BANKING WHAT IS A BULK PAYMENT? A bulk payment is defined as a payment

More information

CouriersPlease International Quote API Documentation

CouriersPlease International Quote API Documentation CouriersPlease International Quote API Documentation CouriersPlease API Version: 1.0.0 1. VERSION CONTROL Version Date Notes Author 1.0.0 10/06/2016 Initial version. Jeff Embro (CouriersPlease) 1.0.1 16/06/2016

More information

SELLER ADMINISTRATION PANEL API

SELLER ADMINISTRATION PANEL API Dotpay Technical Support Wielicka Str. 72, 30-552 Cracow, Poland phone. +48 12 688 26 00 fax +48 12 688 26 49 e-mail: tech@dotpay.pl SELLER ADMINISTRATION PANEL API Version 1.35.4.2 TABLE OF CONTENT Page

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

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api.

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api. Tigo REST API V3 Introduction This api is used to work with the Tigo Energy platform to automate the retrieval and creation of elements. It will attempt to adhere to standard REST calls found in most REST

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

PD ShippingCom (Reference Guide)

PD ShippingCom (Reference Guide) PD ShippingCom (Reference Guide) For use with all versions of PD Shipping Component Revised: 9/1/2017 PageDown Technology, LLC / Copyright 2017 All Rights Reserved. 1 Table of Contents Table of Contents...

More information

TRAKPAK Online How to Use Bulk Mailing

TRAKPAK Online How to Use Bulk Mailing TRAKPAK Online How to Use Bulk Mailing Version 1.0 November 2016 1. Contents 1. Contents... 2 2. Document Control... 3 2.1 Document History... 3 3. Introduction... 4 3.1 Information Required... 4 3.2 Batches

More information

Viostream Upload Widget

Viostream Upload Widget Viostream Upload Widget Version: 1.0 Date: 15 September, 2015 Viocorp 2015 Author Brendon Kellett Viocorp International Pty Ltd ABN: 43 100 186 838 110 Jones Bay Wharf, 26-32 Pirrama Road, Pyrmont NSW

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

SMS Aggregation - API Documentation

SMS Aggregation - API Documentation SMS Aggregation - API Documentation Wireless Logic Version - 2.0 Issue Date - 20th February 2014 Wireless Logic Ltd Grosvenor House Horseshoe Crescent Beaconsfield, Buckinghamshire HP9 1LJ Tel: +44 (0)1494

More information

CouriersPlease Coupon Calculator API Documentation

CouriersPlease Coupon Calculator API Documentation CouriersPlease Coupon Calculator API Documentation CouriersPlease API Version: 1.0.0 1. VERSION CONTROL Version Date Notes Author 1.0.0 07/07/2016 Initial version. Jeff Embro (CouriersPlease) 1.0.1 26/10/2016

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

PowerStore 2: Customizing the WA_Globals.php file

PowerStore 2: Customizing the WA_Globals.php file PowerStore 2: Customizing the WA_Globals.php file This document covers all the settings included in the WA_Globals.php file for PowerStore 2. Refer to this document for information regarding each of the

More information

emag Marketplace API Implementation Best Practices v1.0

emag Marketplace API Implementation Best Practices v1.0 emag Marketplace API Implementation Best Practices v1.0 17.03.2015 Version Date modified Changes 1.0 12.02.2015 First draft Table of Contents 1. General guidelines for authentication... 2 2. Maximum size

More information

Mintigo Marketo Integration Setup Guide. Version

Mintigo Marketo Integration Setup Guide. Version Mintigo Marketo Integration Setup Guide Version 1.2 2017-11-12 Table of Contents MINTIGO MARKETO INTEGRATION SETUP GUIDE... 1 INTEGRATION... 3 1. BEFORE INTEGRATION... 3 2. CONFIGURE REST APIS IN MARKETO...

More information

WhatsATool API - REST-Like Interface to WhatsATool Services

WhatsATool API - REST-Like Interface to WhatsATool Services Disclaimer This service and also mtms Solutions GmbH is not associated in any case with WhatsApp. WhatsApp is a registered Trademark owned by WhatsApp Inc. mtms is not related in any way with WhatsApp

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

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

Twilio SMS Marketplace Add-On

Twilio SMS Marketplace Add-On Twilio SMS Marketplace Add-On webkul.com /blog/marketplace-twilio-sms-notification/ 12/10/2014 Twilio SMS Marketplace Add-On is liable for sending text SMS directly to the Sellers at the time of seller

More information

Plesk API RPC Protocol

Plesk API RPC Protocol SWsoft Plesk API RPC Protocol Developer's Guide Plesk 8.1 for Unix, Plesk 8.1 for Windows (c) 1999-2007 ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703) 815 5670

More information

Riverbed Cascade Profiler Common REST API v1.0

Riverbed Cascade Profiler Common REST API v1.0 Riverbed Cascade Profiler Common REST API v1.0 Copyright Riverbed Technology Inc. 2017 Created Oct 26, 2017 at 04:10 PM Contents Contents Overview Overview SSL Ciphers Certificate Examples Known Issues

More information

API Documentation Updated On: Jan 18, Cross-Border Trade

API Documentation Updated On: Jan 18, Cross-Border Trade API Documentation Updated On: Jan 18, 2018 Cross-Border Trade Document History Date (m/d/y) Issue Author Comments Feb 26, 2014 1.0 Kishore N Initial version Jun 18, 2014 1.1 Abhijit D Added Order APIs

More information

Tokenization Integration Guide

Tokenization Integration Guide Tokenization Integration Guide RECURRING PAYMENTS AND TOKENIZATION PROFILE USING API INTEGRATION GUIDE VERSION 1.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5

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

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

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

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

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

The data and time the envelope was voided.

The data and time the envelope was voided. Service Pack Notes Service Pack Notes for October 3, 2014 This document provides information about the updates deployed to the DocuSign Production environment as part of October 3, 2014 Service Pack. There

More information

User s Guide. DPD Online Application

User s Guide. DPD Online Application User s Guide DPD Online Application User s Manual DPD Online Application Version 2.3 Warsaw, July 2018 Page 2 of 51 User s Guide DPD Online Application Table of contents Table of contents... 3 1. Logging

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

SignNow 2.0 for Salesforce User Guide

SignNow 2.0 for Salesforce User Guide SignNow 2.0 for Salesforce User Guide Follow this guide to install, configure and use the SignNow application for your Salesforce organization REQUIREMENTS Salesforce account and working knowledge of Salesforce.

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

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 page 1 Revision history Version Date Details Writer 1.0.0 10/16/2014 First draft Sally Han 1.1.0 11/13/2014 Revised v.1.1

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.4 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6

More information

API Quick Start Sending a Payment v1.4

API Quick Start Sending a Payment v1.4 PPRO Financial Ltd, 23 Hanover Square, London W1S 1JB, UK API Quick Start Sending a Payment v1.4 Table of Contents Introduction... 2 Step 1 Create a CSR... 3 Step 2 Create a Certificate... 3 Step 3 Sending

More information

NSTIP Portal Registration Manual NSTIP Portal Registration Manual

NSTIP Portal Registration Manual NSTIP Portal Registration Manual NSTIP Portal Registration Manual Jan 2013 1 Contents 1. Introduction to NSTIP Portal... 3 2. Steps... 4 2.1. Registration... 4 2.2. Login... 6 2.3. Update Profile... 8 2 1. Introduction to NSTIP Portal

More information

DPD API Reference Documentation

DPD API Reference Documentation DPD API Reference Documentation Release 2.0 Portal Labs, LLC May 09, 2017 CONTENTS 1 DPD API 3 1.1 About................................................... 3 2 Authentication 5 3 Limitations 7 3.1 Pagination................................................

More information

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Contents Introduction... 1 Creating Accounts... 1 Step One: Creating the CSV file... 1 Step Two: Uploading your data... 4 Updating

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

SDK Developer Reference Manual. Version 1.0

SDK Developer Reference Manual. Version 1.0 SDK Developer Reference Manual Version 1.0 1 Table of contents Overview... 4 What is the HiPay Mobile SDK... 4 What is an SDK?... 4 What is a REST Web Service?... 4 Who may use this SDK?... 4 Knowledge

More information

XML API Developer-Documentation Version 2.01

XML API Developer-Documentation Version 2.01 XML API Developer-Documentation Version 2.01 07/23/2015 1 Content Introduction...4 Who needs this information?...4 S-PAY Testing Environment...4 URL to our API...4 Preparation...5 Requirements...5 API

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

WEB SERVICE DUAL CARRIER

WEB SERVICE DUAL CARRIER WEB SERVICE DUAL CARRIER Updates Version Date Comment V-1 July 2014 Document creation V-1.1 July 2014 Add of test environment access and update of the errors message list V-1.2 September 2014 Update of

More information

I-Portal Training. December 2016

I-Portal Training. December 2016 I-Portal Training December 2016 Agenda I II III Introduction Training Documents User Training Documents Administration Status: December 2016 2 Introduction What is I-Portal? I-Portal is a web-based application

More information

CV. Techno Media Pratama. Hari Pratomo [COURIER MANAGEMENT SYSTEM]

CV. Techno Media Pratama. Hari Pratomo [COURIER MANAGEMENT SYSTEM] 2017 CV. Techno Media Pratama Hari Pratomo [COURIER MANAGEMENT SYSTEM] Courier Management System is a program that is sent or designed to facilitate the delivery business. Courier Management System Demo

More information

MATVEC: MATRIX-VECTOR COMPUTATION LANGUAGE REFERENCE MANUAL. John C. Murphy jcm2105 Programming Languages and Translators Professor Stephen Edwards

MATVEC: MATRIX-VECTOR COMPUTATION LANGUAGE REFERENCE MANUAL. John C. Murphy jcm2105 Programming Languages and Translators Professor Stephen Edwards MATVEC: MATRIX-VECTOR COMPUTATION LANGUAGE REFERENCE MANUAL John C. Murphy jcm2105 Programming Languages and Translators Professor Stephen Edwards Language Reference Manual Introduction The purpose of

More information

Manual For The ISPConfig 3 Billing Module

Manual For The ISPConfig 3 Billing Module Manual For The ISPConfig 3 Billing Module Version 1.0 for ISPConfig 3.0.3.3 Author: Till Brehm Last edited on 06/30/2011 1 The ISPConfig 3 Billing Module is an extension for ISPConfig

More information

Publitas e-docconverter API User Guide Publitas e-docconverter API User Guide

Publitas e-docconverter API User Guide Publitas e-docconverter API User Guide Publitas e-docconverter API User Guide Copyright 2004-2010 Publitas Consulting Services B.V. Page 1 of 11 Version control Version Date Author description 1.0 01-04-2010 Dieudon Egstorf Final version 1.0

More information

API Developer Reference Manual. Version 1.0

API Developer Reference Manual. Version 1.0 API Developer Reference Manual Version 1.0 1 Table of contents Table of contents... 2 Overview... 4 What is the HiPay Mobile API... 4 What is an API?... 4 What is a REST Web Service?... 4 Who may use this

More information

LabCollector Web Service API

LabCollector Web Service API LabCollector Web Service API The LabCollector Web Service Application Programming Interface (API) allows third-party applications to interact with LabCollector's database (modules). The API is based on

More information

212Posters Instructions

212Posters Instructions 212Posters Instructions The 212Posters is a web based application which provides the end user the ability to format and post content, abstracts, posters, and documents in the form of pre-defined layouts.

More information

Stepwise guide for making an online application for Verification Certificate in NDAMIS

Stepwise guide for making an online application for Verification Certificate in NDAMIS 1. Type portal.nda.or.ug in your browser and a page will be displayed as below. Then click APPLY ONLINE. Figure 1: ONLINE APPLICATION PAGE Input your User Credentials and Click on the Login tab. Always

More information

Welcome to Groupon: Deal Centre for Merchants

Welcome to Groupon: Deal Centre for Merchants 2016 Welcome to Groupon: Deal Centre for Merchants GROUPON GOODS GLOBAL GMBH What can I find in this Guide? 1) How does Groupon work? 2) Who will be my points of contact? 3) Pre-deal Preparation with DEAL

More information

Receive Jobs Technical Integration

Receive Jobs Technical Integration Receive Jobs Technical Integration Version 1.3 Jobg8 Limited Version 1.3 1 Document Version History Date Version Description Author 23 Sept 2013 1.0 Initial version Brad O Connor 18 Feb 2014 1.1 Added

More information

Church Community Builder (CCB) Setup Background Screening using CCB Application Programming Interface (API)

Church Community Builder (CCB) Setup Background Screening using CCB Application Programming Interface (API) Church Community Builder (CCB) Setup Background Screening using CCB Application Programming Interface (API) Here is a summary/checklist of the steps required to enable background screening integration.

More information

MyClinic. Password Reset Guide

MyClinic. Password Reset Guide MyClinic Password Reset Guide Content Retrieving your username Retrieving your password using security question Retrieving your password without remembering login credentials Retrieving your password using

More information

Integration Guide WorldShip 2018

Integration Guide WorldShip 2018 WorldShip 2018 Integration Guide This document describes how to upgrade to WorldShip 2018 when you have WorldShip integrated with other business applications. It also gives you information on the powerful

More information

Post-Shipment Document Upload

Post-Shipment Document Upload Post-Shipment Document Upload User Guide Getting more done online helps save you time, paper, and money. With the recent enhancements to FedEx Electronic Trade Documents, we ve made it easier than ever

More information

Administration guide. PRISMAdirect Configuration

Administration guide. PRISMAdirect Configuration Administration guide PRISMAdirect Configuration Copyright 2016, Océ All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted in any form or by any means without written

More information

Automatic system alerts on Primo or, How to respond to a system outage in your sleep

Automatic system alerts on Primo or, How to respond to a system outage in your sleep Automatic system alerts on Primo or, How to respond to a system outage in your sleep Deborah Fitchett Library, Teaching and Learning, Lincoln University The problem The solution Step 1 System status http://status.exlibrisgroup.com/

More information

Dynasty warriors 5 weapon guide >>>DOWNLOAD LINK<<< Pages printed; however. EN Printing a selftest

Dynasty warriors 5 weapon guide >>>DOWNLOAD LINK<<< Pages printed; however. EN Printing a selftest Dynasty warriors 5 weapon guide. Do not feed a sheet of labels. Dynasty warriors 5 weapon guide >>>DOWNLOAD LINK

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

More information

Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive. Header: USPS Price Change January 2011.

Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive. Header: USPS Price Change January 2011. Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive Header: USPS Price Change January 2011 Table of Contents 1. 1. Price Change Overview 2. 2. Shipping Structural

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

PayPal PLUS integration. Let our handbook be the fast track to achieve your business goals.

PayPal PLUS integration. Let our handbook be the fast track to achieve your business goals. PayPal PLUS integration Let our handbook be the fast track to achieve your business goals. Content Introduction 3 Change History 3 Using the PayPal API 4 Architecture 4 PayPal Sandbox 4 API endpoints 4

More information

Version Event Protect Platform RESTfull API call

Version Event Protect Platform RESTfull API call Event Protect Platform RESTfull API call Introduction Via available online service and through specified API, developers can connect to Event Protect platform and submit individual sales transaction. Service

More information

PAYMENTADMIN API 1.1 SveaWebPay

PAYMENTADMIN API 1.1 SveaWebPay PAYMENTADMIN API 1.1 SveaWebPay 2 (22) PaymentAdmin API 1.1 Content Revisions... 4 Overview... 5 Testing... 5 Production... 5 Authentication... 6 Get order... 7 Get task... 8 Deliver order... 9 Cancel

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

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

BPA Platform. White Paper. Magento Integration. Version 1.0

BPA Platform. White Paper. Magento Integration. Version 1.0 BPA Platform White Paper Magento Integration Version 1.0 Copyright The copyright in this document is owned by Orbis Software T/A Codeless Platforms 2018. All rights reserved. This publication may not,

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

Supplier Registration

Supplier Registration Page 1 of 5 Supplier Registration Step Action 1. This is the beginning of the HRSD Supplier Registration. Note: Any fields with an asterisk, " * " is a required field. Registration cannot be completed

More information

Click to overview and then back to credentials https://console.developers.google.com/apis/credentials?project=uplifted-smile-132223 Now follow instructions as usual a. At the top of the page, select the

More information

DIGITAL SERVICES. API Documentation Product Pricing

DIGITAL SERVICES. API Documentation Product Pricing DIGITAL SERVICES API Documentation Product Pricing Document Version Reason for change Author Signed-off by Status 0.10 Creation Gary Inkpen Final Draft 2016 Avios Group (AGL) Limited. All rights reserved.

More information

Express Checkout V3.0. Express CheckOut Integration Guide Version 3. PayTabs

Express Checkout V3.0. Express CheckOut Integration Guide Version 3. PayTabs Express Checkout V3.0 Express CheckOut Integration Guide Version 3 PayTabs www.paytabs.com Revision History Version Description of Change Date 1.0 - New Document 24/03/2015 1.1 - Added Section : Troubleshoot

More information

Version Event Protect Platform RESTfull API call

Version Event Protect Platform RESTfull API call Event Protect Platform RESTfull API call Introduction Via available online service and through specified API, developers can connect to Event Protect platform and submit individual sales transaction. Service

More information

Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E:

Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E: Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successfully installing the Store Pickup extension on your Magento store, First of all you required to configure

More information

Package and Distribute Your Apps

Package and Distribute Your Apps Package and Distribute Your Apps Salesforce, Summer 17 @salesforcedocs Last updated: August 9, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Tilaajavastuu unified resource API

Tilaajavastuu unified resource API Tilaajavastuu unified resource API Suomen Tilaajavastuu Oy 0.5 / 2015-07-23 Contents 1 Introduction 4 1.1 Status and scope of this document version........................ 5 1.2 Use as an acceptance test

More information

I-Portal Training Document - Registration. June 2017

I-Portal Training Document - Registration. June 2017 I-Portal Training Document - Registration June 2017 Introduction What is I-Portal? I-Portal is a web-based application and the new integration platform for wholesale and retail applications in all markets.

More information

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: (

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: ( Twilio SMS Notification Extension for Magento by Azaleasoft User Guide Copyright 2016-2017 azaleasoft.com. 1 Table of Contents 1.Installation Process 3 2.How to use 4 2.1 Create Twilio Account 4 2.2 Admin

More information

New RISE STAFF TIME ENTRY AND PAY STUB VIEWING PROCEDURES

New RISE STAFF TIME ENTRY AND PAY STUB VIEWING PROCEDURES New RISE STAFF TIME ENTRY AND PAY STUB VIEWING PROCEDURES Attention RISE Staff: The City of Lakewood has recently changed to an all-electronic Time Entry and Pay Stub system. You will need to enter your

More information

DPD Shipper User Guide

DPD Shipper User Guide DPD Shipper User Guide 1 Version State Date 0.9.8 Draft 04.09.2017 0.9.7 Draft 28.04.2017 0.9.6 Draft 29.03.2017 0.9.5 Draft 15.03.2017 0.9.4 Draft 14.03.2017 0.9.3 Draft 10.03.2017 0.9.2 Draft 07.03.2017

More information

How To Use Transdirect Transdirect Starter Guide: How To Use Transdirect. Transdirect Starter ter Guide 1

How To Use Transdirect Transdirect Starter Guide: How To Use Transdirect. Transdirect Starter ter Guide 1 Transdirect Starter Guide: Transdirect Starter ter Guide 1 Contents As a new Transdirect member, you have access to a vast network of Australia s leading courier and shipping companies at your fingertips.

More information

plone.restapi Documentation

plone.restapi Documentation plone.restapi Documentation Release 1.0a1 Plone Foundation Dec 23, 2018 Contents 1 Contents 1 2 Introduction 175 3 Documentation 177 4 Getting started 179 5 Installation 181 6 Contribute 183 7 Examples

More information

Quickstart in Qbrick Video Platform

Quickstart in Qbrick Video Platform Quickstart in Qbrick Video Platform 1 Table of content Introduction... 3 Library... 4 Live... 6 Analytics... 7 Summary... 8 2 Introduction The video platform is a service that helps you organize and publish

More information

MERCHANT INTEGRATION GUIDE. Version 2.7

MERCHANT INTEGRATION GUIDE. Version 2.7 MERCHANT INTEGRATION GUIDE Version 2.7 CHANGE LOG 1. Showed accepted currencies per payment option. 2. Added validation for RUB payments. INTRODUCTION MegaTransfer provides a wide range of financial services

More information

Park Uphill Park Customer Name Hfggeees Address 1 IVwBzhlgWLkvOMXQI Address 2 XZEFmVMiyfNUM Town / City New York Country USA Postcode 2327 County USA Telephone 20891375937 E-mail kflwwoml@bgeiuujl.com

More information

Register for the Partner Ready Portal

Register for the Partner Ready Portal Register for the Partner Ready Portal Registration process for new users of registered HPE Partners February 2019 HPE Partner Ready Portal New user registration This step-by-step guide helps new users

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

Administration Guide

Administration Guide Administration Guide 04/11/2018 Blackbaud Altru 4.96 Administration US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic,

More information

Merchant e-solutions Payment Acceptance User Guide for Magento (M1)

Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts... 3 Extension

More information

Import File Specifications

Import File Specifications ScotiaConnect Wire Payments Trademark of The Bank of Nova Scotia. The Bank of Nova Scotia, 2003. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Google Domain Shared Contacts Client Documentation

Google Domain Shared Contacts Client Documentation Google Domain Shared Contacts Client Documentation Release 0.1.0 Robert Joyal Mar 31, 2018 Contents 1 Google Domain Shared Contacts Client 3 1.1 Features..................................................

More information