mobile.international Seller API Documentation for Transfer Service Providers (TSPs) Table of contents Seller-API Documentation for TSPs

Size: px
Start display at page:

Download "mobile.international Seller API Documentation for Transfer Service Providers (TSPs) Table of contents Seller-API Documentation for TSPs"

Transcription

1 mobile.international Seller API Documentation for Transfer Service Providers (TSPs) Table of contents Document History...2 Introduction...3 Customer Support France...3 Additional documents...3 Developer Sandbox...3 API Overview...4 Example HTTP-request...5 HTTP-Responses (bad request) (unauthorized)...6 Handling Ads...7 Function: Create / Update Ad...7 Function: Adding / Deleting Images...7 Function: Retrieving Ad Details...8 Function: Delete Ad...8 mobile.international GmbH 1

2 Document History Date/Version Author Comments/Changes 10/26/2009 P. Laufer Initial version 11/16/2009 P. Laufer Fixed Sandbox URL, Seller-API base URL now starts with HTTPS, minor corrections 11/20/2009 P. Laufer Added some curl examples, removed deprecated X- MOBILE-SELLER-API-USER-ID http header mobile.international GmbH 2

3 Introduction The mobile.international Seller-API is an interface to store seller vehicle and user data to the mobile.international-database and make them available on the platform as classified ads. Technically it is a REST-API, which enables API partners to carry out all actions as if they were directly using the one of the mobile.international websites to post their ads. The API supports all necessary operations to manage the full lifecycle of listings from creation to deletion. This results in the following set of features for the mobile.international REST-API: Create an advertisement Update an advertisement Delete an advertisement Please note: In order to upload listings on behalf of mobile.international customers you ll need to register as a TSP on the mobile.international platform. Please contact Customer Support for further details about this activation process! Customer Support France Phone: support-client@ebay-automobile.fr Customer Support Italy Phone: info@ebay-automobile.it Additional documents In addition to this document you should read the mobile.international XML Ad Data Format documentation which describes the XML format used by the Seller-API. Please refer to for more information and download links. Developer Sandbox For testing purposes a sandbox is available at the IP: sandbox.mobile.de on Port 80. Please contact mobile.international for API user details, ids and tokens. mobile.international GmbH 3

4 API Overview In general the API follows the conventions for REST-APIs. All communication is done via HTTP, the correct combination of request methods and URL trigger the actions of the API. The API is available at the base URL The base URL is the same for all mobile.international marketplaces. All actions are executed in the context of a specific customer (recognized by the provided Seller ID) and thus directed to the mobile.international website the customer registered on. Please note: The seller-id is not the customer-number. Please ask customer support for the seller-ids of your customers. An interface for automatic lookup will be available in future API versions. Authentication and authorization is part of the HTTP-header, which has to be included for each call. The required token is unique for each API user, and not dependent on accounts or ads. HTTP header element Format Description X-MOBILE-SELLER-TOKEN String Static token of the registered API user Please refer to the following table for an overview of the methods and corresponding calls. Use Case URI Method Request content Create Ad /sellers/{sellerid}/ads POST application/xml Update Ad /sellers/{sellerid}/ads/{adid}/ PUT application/xml Delete Ad /sellers/{sellerid}/ads/{adid}/ DELETE none Upload Image /sellers/{sellerid}/ads/{adid}/images POST image/jpg, image/jpeg Upload Images /sellers/{sellerid}/ads/{adid}/images PUT multipart/form-data Delete Images /sellers/{sellerid}/ads/{adid}/images DELETE none Retrieve Ad /sellers/{sellerid}/ads/{adid}/ GET none Please note: The content type must be explicitly set for each request. mobile.international GmbH 4

5 Example HTTP-request The following is an example HTTP POST request issued to that creates a new ad for the customer with the Seller ID The ad details (defined in the mobile.international XML Ad Data Format) are sent within the request body. POST /seller-api/sellers/89064/ads HTTP/1.1 X-MOBILE-SELLER-TOKEN: vsdfv34refg543t5g5445g4tb4t6wat43g67tgdb45g User-Agent: Jakarta Commons-HttpClient/3.1 Host: services.mobile.de:80 Content-Length: 1330 Content-Type: application/xml; charset=utf-8 <?xml version="1.0" encoding="utf-8"?> <ad:ad xmlns:ad=" xmlns:price=" xmlns:types=" xmlns:vehicle=" xmlns:specifics=" xmlns:xsi=" xsi:schemalocation=" seller-ad-1.0.xsd"> <vehicle:vehicle> <vehicle:classification> <vehicle:vehicle-class key="car"/> <vehicle:category key="limousine"/> <vehicle:make key="bmw"/> <vehicle:model key="z3" /> </vehicle:classification> <vehicle:damage-and-unrepaired value="false" /> <vehicle:model-description value="cooles Auto"/> <vehicle:specifics> <vehicle:construction-year value="1999"/> <vehicle:mileage value="100000" /> </vehicle:specifics> <vehicle:site-specifics> <specifics:first-registration value=" " /> <specifics:emission-sticker key="emissionssticker_yellow" /> </vehicle:site-specifics> </vehicle:vehicle> <price:price currency="eur" type="fixed"> <price:gross-prices> <price:consumer-price-amount value="1000.0"/> </price:gross-prices> </price:price> </ad:ad> mobile.international GmbH 5

6 HTTP-Responses A successful call will be indicated by an http-status code 2xx (successful). This can either be 201 (created) or 200 (OK). Errors will also be indicated by the return code. Currently the API specifies two different types of errors: 400 (bad request) and 401 (unauthorized). In addition to the return codes the XML contains a section with details on the detected errors. 400 (bad request) This code is returned on content-validation errors (missing, erroneous or contradictory values in your ad specification). The response contains content of the type application/xml describing the validation errors. Please refer to the mobile.international XML Ad Data Format documentation for a complete list of ad validation errors. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <errors> <error key="vehicle-empty"/> <error key="price-empty"/> </errors> 401 (unauthorized) This code is returned on a wrong/missing token for authentication or if the user tries to access an ad without being authorized to do so. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <errors> <error key="wrong-token"/> </errors> If you keep getting authorization errors check the following list of possible error causes: Did you register as a TSP with mobile.international and has Customer Support properly activated your account? Call Customer Support to register as a TSP or ask whether your account has been properly activated. Do you send the correct Seller Token with your requests? Make sure your requests contain the HTTP Header X-MOBILE-SELLER-TOKEN and the Seller Token equals the one provided to you by Customer Support. If in doubt ask Customer Support to resend the token to you or let them generate a new one. Do you use the correct Seller ID in your requests URLs? Make sure you send your requests to the correct URL containing the Seller ID of the customer you are servicing. Ask Customer Support whether the customer has been properly set up for TSP servicing with your mobile.international TSP account. Do you use the correct HTTP method and API service URL? Take a look at the API Use Case table provided above and make sure you got the API base URL, API function URI and HTTP method right. mobile.international GmbH 6

7 Handling Ads Function: Create / Update Ad All operations to manipulate and/or create ads in the mobile.de database, are triggered via the interface sellers/{sellerid}/ads. Each request must contain the http-header element X-MOBILE-SELLER-TOKEN, which is used for authentication and authorization. Operation Method URL Create Ad POST sellers/{sellerid}/ads Update Ad PUT sellers/{sellerid}/ads/{adid} Delete Ad DELETE sellers/{sellerid}/ads/{adid} On success a create request returns the status code 201 (created) and the http-header Location: /sellers/{customerid}/ads/{adid}. Please note: The adid must be stored in order to make changes to the ad later on, and/or to delete the ad or to add images to it. In case of a successful update the http status code 200 (OK) is returned. In case you receive status code 400 (bad request) please refer to the mobile.international XML Ad Data Format documentation for a complete list of ad validation errors. API Usage Example: Create a New Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" -X POST {sellerid}/ads API Usage Example: Update an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" -H "Content-Type: application/xml" -X PUT {adid} Function: Adding / Deleting Images Operation Method URL Add image POST sellers/{sellerid}/ads/{adid}/images Add images PUT sellers/{sellerid}/ads/{adid}/images Delete all images DELETE sellers/{sellerid}/ads/{adid}/images All images, which are related to a specific ad must be added to it via the API. API Usage Example: Add an Image to an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" -H "Content-Type: image/jpg" X POST {adid}/images mobile.international GmbH 7

8 API Usage Example: Add Images to an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" -H "Content-Type: multipart/form-data" -X PUT -F -F seller-api/sellers/{sellerid}/ads/{adid}/images API Usage Example: Delete all Images of an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" X DELETE {adid}/images Function: Retrieving Ad Details Operation Method URL Get an ad GET sellers/{sellerid}/ads/{adid} Get all ads of a seller GET sellers/{sellerid}/ads The response contains xml describing the ad(s). Refer to the mobile.international XML Ad Data Format documentation for a complete reference of the returned XML. API Usage Example: Get Details of an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" {adid} API Usage Example: Get Details of all Ads curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" Function: Delete Ad For deleting an ad you must send a DELETE request to /sellers/{sellerid}/ads/{adid}. On success the status code 200 (OK) is returned. In case you receive the status code 404 (not found) the ad either has already been deleted or you provided the wrong ad id. Each request must contain the http-header element X-MOBILE-SELLER-TOKEN, which is used for authentication and authorization API Usage Example: Delete an Ad curl -v -H "X-MOBILE-SELLER-TOKEN: foobar" -X DELETE {adid} mobile.international GmbH 8

HTTP Console Documentation

HTTP Console Documentation HTTP Console Documentation Release 1.0.0 Ahmad Nassri April 02, 2014 Contents 1 text/html 1 2 text/plain 3 3 application/php 5 4 application/xml 7 5 application/json 9 6 API Reference 11 6.1 /ip.....................................................

More information

Qualys Cloud Suite API Release Notes

Qualys Cloud Suite API Release Notes Qualys Cloud Suite API Release Notes Version 2.31 Qualys Cloud Suite API gives you many ways to integrate your programs and API calls with Qualys capabilities. You ll find all the details in our user guides,

More information

File Resource Operations Summary

File Resource Operations Summary CHAPTER 10 This chapter describes the Cisco WebEx Social API File resource operations. These operations let you upload to Cisco WebEx Social server a text or binary file (which you can later embed in or

More information

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design REST Web Services Objektumorientált szoftvertervezés Object-oriented software design Dr. Balázs Simon BME, IIT Outline HTTP REST REST principles Criticism of REST CRUD operations with REST RPC operations

More information

XML and SFTP APIs How-to Guide

XML and SFTP APIs How-to Guide XML and SFTP APIs How-to Guide Version 1.0 2017-11-22 BEL: Added Get eaddress schema to XML-API and description of SFTP API. Service name updated & some minor corrections. Version 0.2 2017-11-08 BEL: First

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

LUCITY REST API INTRODUCTION AND CORE CONCEPTS

LUCITY REST API INTRODUCTION AND CORE CONCEPTS LUCITY REST API INTRODUCTION AND CORE CONCEPTS REST API OFFERINGS Lucity Citizen Portal REST API Lucity REST API Both products are included in our REST API Historically we also offered a COM API and a.net

More information

Reviewing the API Documentation

Reviewing the API Documentation About the Cisco APIC-EM API Documentation, page 1 Testing the Cisco APIC-EM APIs, page 6 About the Cisco APIC-EM API Documentation Cisco APIC-EM controller provides interactive, northbound Representational

More information

Web Services Week 10

Web Services Week 10 Web Services Week 10 Emrullah SONUÇ Department of Computer Engineering Karabuk University Fall 2017 1 Recap BPEL Process in Netbeans RESTful Web Services Introduction to Rest Api 2 Contents RESTful Web

More information

RESTful Services. Distributed Enabling Platform

RESTful Services. Distributed Enabling Platform RESTful Services 1 https://dev.twitter.com/docs/api 2 http://developer.linkedin.com/apis 3 http://docs.aws.amazon.com/amazons3/latest/api/apirest.html 4 Web Architectural Components 1. Identification:

More information

Technical Guide. REST API for Mobile Outbound SMS

Technical Guide. REST API for Mobile Outbound SMS Technical Guide REST API for Mobile Outbound SMS Munich +49 89 202 451 100 Singapore +65 6478 3020 London +44 207 436 0283 San Francisco +1 415 527 0903 sales@tyntec.com www.tyntec.com Table of Contents

More information

Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version of this spec.

Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version of this spec. Customs Declaration Service Full Declaration API v0.4 Document Version Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version

More information

Shopitem API A technical guide to the REST API for managing updates of shopitems

Shopitem API A technical guide to the REST API for managing updates of shopitems Shopitem API A technical guide to the REST API for managing updates of shopitems Date: 07-12-2018 Version: 3.4 1 Index Introduction and background... 3 1. How to get access to the API and its online docs...

More information

Heartbeat API. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer.

Heartbeat API. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer. Heartbeat API Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October 2018 Nick Palmer Product Manager Page 1 of 7 Table of Contents 1. Purpose... 3 2. Glossary of Terms... 3

More information

2N Helios IP HTTP API

2N Helios IP HTTP API 2N Helios IP HTTP API Konfigurační manuál Version 2.11 www.2n.cz The 2N TELEKOMUNIKACE a.s. is a Czech manufacturer and supplier of telecommunications equipment. The product family developed by 2N TELEKOMUNIKACE

More information

Header Status Codes Cheat Sheet

Header Status Codes Cheat Sheet Header Status Codes Cheat Sheet Thanks for downloading our header status codes cheat sheet! Below you ll find all the header status codes and their meanings. They are organized by sections, starting with

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

OAuth2lib. implementation

OAuth2lib.   implementation OAuth2lib http://tools.ietf.org/html/ietf-oauth-v2-08 implementation 24 Junio 2010 Índice de contenido Oauth2lib v05...1 Introduction...3 Documentation...4 OAuth2 Assertion Flow...4 Authorization Flow...4

More information

CMDP-STATE DATABASE INTERFACE CONTROL DOCUMENT

CMDP-STATE DATABASE INTERFACE CONTROL DOCUMENT CMDP-STATE DATABASE INTERFACE CONTROL DOCUMENT Prepared for: WILL BOWMAN PRODUCT OWNER U.S. EPA OFFICE OF WATER KRISTEN GASTNER PROJECT MANAGER U.S. EPA OFFICE OF WATER Prepared by: ATTAIN 1600 TYSONS

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

HTTPS File Transfer. Specification

HTTPS File Transfer. Specification HTTPS File Transfer Specification Version 1.4 5-Apr-2017 Date Version Description 30-Aug-2010 1.0 Original Version 30-Jun-2011 1.1 Added FAQ 29-Jun-2015 1.2 ilink administration added 1-Sep-2015 1.3 Updated

More information

Yandex.Webmaster API Developer's guide

Yandex.Webmaster API Developer's guide 25.04.2013 .. Version 1.0 Document build date: 25.04.2013. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2013 Yandex LLC. All rights reserved.

More information

Cisco Elastic Service Controller 1.1 REST API Guide

Cisco Elastic Service Controller 1.1 REST API Guide Cisco Elastic Service Controller 1.1 REST API Guide Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website

More information

CMDP-LIMS INTERFACE CONTROL

CMDP-LIMS INTERFACE CONTROL CMDP LIMS ICD CMDP-LIMS INTERFACE CONTROL DOCUMENT Prepared for: WILL BOWMAN Product Owner U.S. EPA OFFICE OF WATER Prepared by: ATTAIN, LLC TABLE OF CONTENTS INTRODUCTION... 2 About This Document... 2

More information

PUSH services. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer.

PUSH services. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer. PUSH services Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October 2018 Nick Palmer Product Manager Page 1 of 8 Table of Contents 1. Purpose... 3 2. Glossary of Terms... 3

More information

jquery Basic HTTP communication

jquery Basic HTTP communication jquery Basic HTTP communication TAMZ 1 Lab 5 See: http://api.jquery.com/jquery.get/ http://api.jquery.com/jquery.post/ Application deployment Application has to be uploaded to a server Using of FTP/SCP/SFTP

More information

[MS-INFODCF]: InfoPath Data Connection File Download Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-INFODCF]: InfoPath Data Connection File Download Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-INFODCF]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Information About SIP Compliance with RFC 3261

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

More information

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM)

IUID Registry Application Programming Interface (API) Version Software User s Manual (SUM) IUID Registry Application Programming Interface (API) Version 5.11 Software User s Manual (SUM) Document Version 5.11 January 04, 2016 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared

More information

Protocols. Application Layer FTP, HTTP, SSH, IMAP. Transport Layer TCP, UDP. Internet Layer IP. Link Layer Ethernet, WiFi

Protocols. Application Layer FTP, HTTP, SSH, IMAP. Transport Layer TCP, UDP. Internet Layer IP. Link Layer Ethernet, WiFi HTTP Protocols Application Layer FTP, HTTP, SSH, IMAP Transport Layer TCP, UDP Internet Layer IP Link Layer Ethernet, WiFi TCP/IP Transmission Control Protocol. Connection-Oriented Reliable source address

More information

Qualys Cloud Platform v2.x API Release Notes

Qualys Cloud Platform v2.x API Release Notes API Release Notes Version 2.32.2 April 25, 2018 Qualys Cloud Suite API gives you many ways to integrate your programs and API calls with Qualys capabilities. You ll find all the details in our user guides,

More information

REST in a Nutshell: A Mini Guide for Python Developers

REST in a Nutshell: A Mini Guide for Python Developers REST in a Nutshell: A Mini Guide for Python Developers REST is essentially a set of useful conventions for structuring a web API. By "web API", I mean an API that you interact with over HTTP - making requests

More information

SEARCH by Sound. API Documentation. Spectralmind Audio Intelligence Platform. Spectralmind. Platform version: 1.3 Document version: 1.1.

SEARCH by Sound. API Documentation. Spectralmind Audio Intelligence Platform. Spectralmind. Platform version: 1.3 Document version: 1.1. Spectralmind Platform version: 1.3 Document version: 1.1.1 SEARCH by Sound Spectralmind Audio Intelligence Platform Authors: Wolfgang Jochum, Ewald Peiszer API Documentation Version... 3 Overview... 3

More information

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009 Introduction: If you have had opportunity to review the documentation for Amazon s Web Services API for Seller Central you may have been impressed with all the documentation available and thought it would

More information

Error Transferring File Server Returned Http Response Code 407 For Url

Error Transferring File Server Returned Http Response Code 407 For Url Error Transferring File Server Returned Http Response Code 407 For Url HTTP 1.1 has a number of response codes which are sent from the server to inform Code 200 specifically means that a URL/URI points

More information

Ad-ID COMPLETE EXTERNAL ACCESS (CEA) SPECIFICATION

Ad-ID COMPLETE EXTERNAL ACCESS (CEA) SPECIFICATION Ad-ID COMPLETE EXTERNAL ACCESS (CEA) SPECIFICATION Version 1.5 Revision History Date Updates July 2017 Version 1.5 Updated rules for providing Parent company information for unlocked prefix December 2016

More information

Version 1.1. How to use. Onetrail Self connect via TPN Manager. Page 1 of 10

Version 1.1. How to use. Onetrail Self connect via TPN Manager. Page 1 of 10 Version 1.1 How to use Onetrail Self connect via TPN Manager Page 1 of 10 A guidance to new Trading Partners This Document is designed to give guidance to new trading partners, using the Onetrail TPN Manager

More information

TRAINING GUIDE. Lucity Web Services APIs

TRAINING GUIDE. Lucity Web Services APIs TRAINING GUIDE Lucity Web Services APIs Lucity Web Services APIs Lucity offers several web service APIs. This guide covers the Lucity Citizen Portal API as well as the. Contents How it Works... 2 Basics...

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

Configuring a Microstrategy Resource in Metadata Manager 9.5.0

Configuring a Microstrategy Resource in Metadata Manager 9.5.0 Configuring a Microstrategy Resource in Metadata Manager 9.5.0 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

CREATE AND USE VARIABLE DATA

CREATE AND USE VARIABLE DATA CREATE AND USE VARIABLE DATA in HP Web Jetadmin CONTENTS Overview... 2 Create user defined fields to store your variable data... 2 Import the variable data into HP Web Jetadmin... 3 Create a template with

More information

Coding Intro to APIs and REST

Coding Intro to APIs and REST DEVNET-3607 Coding 1001 - Intro to APIs and REST Matthew DeNapoli DevNet Developer Evangelist Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1. Find this session

More information

Developing RESTful Services Using JAX-RS

Developing RESTful Services Using JAX-RS Developing RESTful Services Using JAX-RS Bibhas Bhattacharya CTO, Web Age Solutions Inc. April 2012. Many Flavors of Services Web Services come in all shapes and sizes XML-based services (SOAP, XML-RPC,

More information

MARKETO INTEGRATION SETUP GUIDE

MARKETO INTEGRATION SETUP GUIDE Success@BrightHooks.com MARKETO INTEGRATION SETUP GUIDE OVERVIEW Webhooks are a breeze to setup and use in Marketo. But building your own webhook service may not be that easy. Fellow Marketo users told

More information

C. The system is equally reliable for classifying any one of the eight logo types 78% of the time.

C. The system is equally reliable for classifying any one of the eight logo types 78% of the time. Volume: 63 Questions Question No: 1 A system with a set of classifiers is trained to recognize eight different company logos from images. It is 78% accurate. Without further information, which statement

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

X-Road Message Protocol for REST

X-Road Message Protocol for REST X-Road Message Protocol for REST XRDDEV-121 - As an X-Road user I want that a draft version of X-Road Message Protocol for REST is created so that I know how REST clients and services will communicate

More information

OVERVIEW OF ETSI M2M RELEASE 1 STAGE 3 API AND RESOURCE USAGE

OVERVIEW OF ETSI M2M RELEASE 1 STAGE 3 API AND RESOURCE USAGE OVERVIEW OF ETSI M2M RELEASE 1 STAGE 3 API AND RESOURCE USAGE Presented by Guang Lu, WG3 Rapporteur, InterDigital Outline TS 102 921 overview ETSI M2M reference points ETSI M2M resource tree ETSI M2M API

More information

File Resource Operations Summary

File Resource Operations Summary CHAPTER 13 This chapter describes the Cisco WebEx Social API File resource operations. These operations let you upload to the Cisco WebEx Social server a text or binary file (which you can later embed

More information

Active Market API v2

Active Market API v2 Active Market API v2 Document Revision 1.0 Date of Issue: 10 May 2018 Date of revision: 10 May 2018 Nick Palmer Product Manager Page 1 of 18 Table of Contents 1. Purpose... 3 2. Glossary of Terms... 3

More information

Integration Guide. LoginTC

Integration Guide. LoginTC Integration Guide LoginTC Revised: 21 November 2016 About This Guide Guide Type Documented Integration WatchGuard or a Technology Partner has provided documentation demonstrating integration. Guide Details

More information

REST. Lecture BigData Analytics. Julian M. Kunkel. University of Hamburg / German Climate Computing Center (DKRZ)

REST. Lecture BigData Analytics. Julian M. Kunkel. University of Hamburg / German Climate Computing Center (DKRZ) REST Lecture BigData Analytics Julian M. Kunkel julian.kunkel@googlemail.com University of Hamburg / German Climate Computing Center (DKRZ) 11-12-2015 Outline 1 REST APIs 2 Julian M. Kunkel Lecture BigData

More information

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1,

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1, ZipRecruiter Apply Webhook Documentation ZR ATS Integration Team Version 1.1, 2017-10-12 Table of Contents Introduction................................................................................ 1

More information

ServiceNow Deployment Guide

ServiceNow Deployment Guide ServiceNow Deployment Guide (For Eureka release and forward) Okta Inc. 301 Brannan Street, 3 rd Floor San Francisco, CA, 94107 info@okta.com 1-888-722-7871 Contents Overview... 3 Active Directory Integration...

More information

Using OAuth 2.0 to Access ionbiz APIs

Using OAuth 2.0 to Access ionbiz APIs Using OAuth 2.0 to Access ionbiz APIs ionbiz APIs use the OAuth 2.0 protocol for authentication and authorization. ionbiz supports common OAuth 2.0 scenarios such as those for web server, installed, and

More information

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA Salesforce Integration User Guide 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents Salesforce Integration User Guide... 3 Setting Up Your Account... 4 Helpful Hints...

More information

Canonical Identity Provider Documentation

Canonical Identity Provider Documentation Canonical Identity Provider Documentation Release Canonical Ltd. December 14, 2018 Contents 1 API 3 1.1 General considerations.......................................... 3 1.2 Rate limiting...............................................

More information

HTTP Authentication API

HTTP Authentication API HTTP Authentication API Note: Both GET (URL format) and POST http requests are supported. Note that POST is considered better security as URL data can be cached in the browser. HTTP URL Format http(s)://your_securenvoy_server/secserver?flag=desktop&version=2.0&status=auth&userid=(my_userid)&passcode=(6

More information

Multi-Tenant Accounting in OpenStack

Multi-Tenant Accounting in OpenStack Jorge L Williams Ziad N Sawalha Khaled Hussein Abstract As a cloud computing platform, OpenStack must support the concept

More information

TAXII 2.0 Specification Pre Draft

TAXII 2.0 Specification Pre Draft TAXII 2.0 Specification Pre Draft Current Status/Intent This document serves to gain consensus on pre draft concepts of TAXII 2.0. Please feel free to poke holes and comment! Overview TAXII is an open

More information

Integration Services 2014

Integration Services 2014 Integration Services 2014 Raitis Grinbergs and Dan Wyand EPiServer Commerce Development The Choice for Leaders in Digital Current Integration PIM DAM Catalog XML Media CMS Media Commerce Goals Improve

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

Account Activity Migration guide & set up

Account Activity Migration guide & set up Account Activity Migration guide & set up Agenda 1 2 3 4 5 What is the Account Activity (AAAPI)? User Streams & Site Streams overview What s different & what s changing? How to migrate to AAAPI? Questions?

More information

Note: This document is not updated for the 2.3 GA release.

Note: This document is not updated for the 2.3 GA release. Maconomy RESTful Web Services Programmer s Guide 2015 Edited by Rune Glerup Note: This document is not updated for the 2.3 GA release. While Deltek has attempted to verify that the information in this

More information

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved Textkernel Sourcebox Sourcebox Interfacing Guide Version 3.0.30 2011-02-28 2011, Textkernel BV, all rights reserved Sourcebox Interfacing Guide 2 Disclaimer Ownership Usage Textkernel BV provides this

More information

Compliance with RFC 3261

Compliance with RFC 3261 APPENDIX A Compliance with RFC 3261 This appendix describes how the Cisco Unified IP Phone 7960G and 7940G complies with the IETF definition of SIP as described in RFC 3261. It contains compliance information

More information

Cisco Elastic Service Controller 1.0 REST API Guide

Cisco Elastic Service Controller 1.0 REST API Guide Cisco Elastic Service Controller 1.0 REST API Guide Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website

More information

Introduction to RESTful Web Services. Presented by Steve Ives

Introduction to RESTful Web Services. Presented by Steve Ives 1 Introduction to RESTful Web Services Presented by Steve Ives Introduction to RESTful Web Services What are web services? How are web services implemented? Why are web services used? Categories of web

More information

around Customized Apparel using Spreadshirt s API Martin Breest Platform Spreadshirt

around Customized Apparel using Spreadshirt s API Martin Breest Platform Spreadshirt Realizing your Ideas around Customized Apparel using Spreadshirt s API Martin Breest Platform Evangelist @ Spreadshirt We allow you to create Customized Apparel (CA) ProductType Design Text Page 2 We offer

More information

Chapter 1 - Consuming REST Web Services in Angular

Chapter 1 - Consuming REST Web Services in Angular Chapter 1 - Consuming REST Web Services in Angular Objectives Key objectives of this chapter REST Overview Common Angular tasks for REST communication Using Angular to send various HTTP requests 1.1 REST

More information

Crestron Virtual Control REST API

Crestron Virtual Control REST API Crestron Virtual Control REST API Programming Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron Service Providers (CSPs) under a limited

More information

Fax Broadcast Web Services

Fax Broadcast Web Services Fax Broadcast Web Services Table of Contents WEB SERVICES PRIMER... 1 WEB SERVICES... 1 WEB METHODS... 1 SOAP ENCAPSULATION... 1 DOCUMENT/LITERAL FORMAT... 1 URL ENCODING... 1 SECURE POSTING... 1 FAX BROADCAST

More information

Authentify SMS Gateway

Authentify SMS Gateway RSA SMS HTTP Plug-In Implementation Guide Last Modified: December 2 nd, 2014 Partner Information Product Information Partner Name Web Site Product Name Product Description Authentify www.authentify.com

More information

Best Practices for Integrating with ebay RESTful APIs

Best Practices for Integrating with ebay RESTful APIs { } Best Practices for Integrating with ebay RESTful APIs { Tanya Vlahovic } { Senior Architect, Developer Ecosystem and Services } ebay Connect 2017 Developer Conference API Integrations Adopting best

More information

Technical Guide. REST API for Number Information Services

Technical Guide. REST API for Number Information Services Technical Guide REST API for Number Information Services Munich +49 89 202 451 100 Singapore +65 6478 3020 London +44 207 436 0283 San Francisco +1 415 527 0903 sales@tyntec.com www.tyntec.com Table of

More information

Specification 11/07/2017. Copyright 2017 FUJITSU LIMITED. Version 5.0

Specification 11/07/2017. Copyright 2017 FUJITSU LIMITED. Version 5.0 Specification irmc RESTful API Version 5.0 11/07/2017 Copyright 2017 FUJITSU LIMITED Designations used in this document may be trademarks, the use of which by third parties for their own purposes could

More information

Content index. Request and Response Request types Errors Error codeṣ Response types DH Api Documentation

Content index. Request and Response Request types Errors Error codeṣ Response types DH Api Documentation Content index DH Api Documentation Request and Response... 12 Request types... 13 Xmlrpc... 13 Jsonrpc... 13 Simplẹ... 13 Response types... 14 Xmlrpc... 14 Jsonrpc... 14 Tesṭ... 14 Simplẹ... 14 Debug...

More information

TELIA OPERATOR SERVICE PLATFORM

TELIA OPERATOR SERVICE PLATFORM TELIA OPERATOR SERVICE PLATFORM OMA Authorization REST API Guide Copyright 2017 Aepona Limited, and copyright 2017 Telia All rights reserved by respective owners. Revision: 6.0 Legal Information Legal

More information

ilab Solutions API Table of Contents Last revised March 29, 2016 Contact api for questions

ilab Solutions API Table of Contents Last revised March 29, 2016 Contact api for questions ilab Solutions API Last revised March 29, 2016 Contact api support@ilabsolutions.com for questions Table of Contents Introduction 1 Authentication 1.1. Obtaining a client ID and token Client ID Token 1.2.

More information

RESTFUL WEB SERVICES - INTERVIEW QUESTIONS

RESTFUL WEB SERVICES - INTERVIEW QUESTIONS RESTFUL WEB SERVICES - INTERVIEW QUESTIONS http://www.tutorialspoint.com/restful/restful_interview_questions.htm Copyright tutorialspoint.com Dear readers, these RESTful Web services Interview Questions

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

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

Fyndiq Prestashop Module

Fyndiq Prestashop Module Fyndiq Prestashop Module User guide. Version 2.0 Introduction 2 Fyndiq Merchant Support 2 Prerequisites 2 Seller account 3 Create the account 4 Your company 4 Contact information 4 Your webshop on Fyndiq

More information

Account Activity Migration guide & set up

Account Activity Migration guide & set up Account Activity Migration guide & set up Agenda 1 2 3 4 5 What is the Account Activity (AAAPI)? User Streams & Site Streams overview What s different & what s changing? How to migrate to AAAPI? Questions?

More information

Introduction. Setup. Thank you for purchasing our Tuning Database API subscription!

Introduction. Setup. Thank you for purchasing our Tuning Database API subscription! B&C Consulting Tuning Database API Introduction Thank you for purchasing our Tuning Database API subscription! With this API you can integrate the B&C Consulting tuning data such as stages, power & torque

More information

Essential Import Service

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

More information

Oracle Cloud Known Issues for Oracle Integration Cloud Service. Release 18.1

Oracle Cloud Known Issues for Oracle Integration Cloud Service. Release 18.1 Oracle Cloud Known Issues for Oracle Integration Cloud Service Release 18.1 E55682-36 February 2018 Oracle Cloud Known Issues for Oracle Integration Cloud Service, Release 18.1 E55682-36 Copyright 2015,

More information

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD.

Object Storage Service. Developer Guide. Issue 05 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 05 Date 2018-12-14 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

RESTful API TLS/SSL. InCommon c/o Internet Oakbrook Drive, Suite 300 Ann Arbor MI, 48104

RESTful API TLS/SSL. InCommon c/o Internet Oakbrook Drive, Suite 300 Ann Arbor MI, 48104 RESTful API TLS/SSL InCommon c/o Internet2 1000 Oakbrook Drive, Suite 300 Ann Arbor MI, 48104 Table of Contents Version History... 2 1 Introduction... 3 1.1 HTTP Methods... 3 1.2 HTTP Status Codes... 3

More information

Cloud Elements CRM Hub Provisioning and Usage Guide

Cloud Elements CRM Hub Provisioning and Usage Guide Cloud Elements CRM Hub Provisioning and Usage Guide API Version 2.0 Page!1 Introduction The CRM Hub provides a uniform API that allows applications to use various endpoints such as Salesforce, Zoho, SugarCRM,

More information

McAfee Next Generation Firewall 5.8.0

McAfee Next Generation Firewall 5.8.0 Reference Guide Revision A McAfee Next Generation Firewall 5.8.0 SMC API This guide gives an overview of the Security Management Center (SMC) application programming interface (API). It describes how to

More information

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1

The HTTP protocol. Fulvio Corno, Dario Bonino. 08/10/09 http 1 The HTTP protocol Fulvio Corno, Dario Bonino 08/10/09 http 1 What is HTTP? HTTP stands for Hypertext Transfer Protocol It is the network protocol used to delivery virtually all data over the WWW: Images

More information

C U B I T S. API DOCUMENTATION Version 1.8

C U B I T S. API DOCUMENTATION Version 1.8 C U B I T S API DOCUMENTATION Version 1.8 Table of Contents Table of Contents Introduction Request and Response Format Authentication Callbacks User language selection Test Invoices Channels Quote Channels

More information

D WSMO Data Grounding Component

D WSMO Data Grounding Component Project Number: 215219 Project Acronym: SOA4All Project Title: Instrument: Thematic Priority: Service Oriented Architectures for All Integrated Project Information and Communication Technologies Activity

More information

API Security Management SENTINET

API Security Management SENTINET API Security Management SENTINET Overview 1 Contents Introduction... 2 Security Models... 2 Authentication... 2 Authorization... 3 Security Mediation and Translation... 5 Bidirectional Security Management...

More information

Gatesms.eu Mobile Solutions for Business

Gatesms.eu Mobile Solutions for Business TECHNICAL SPECIFICATIONS XML Web API GATESMS.EU, version 1.1 Prepared by: Gatesms.eu Contents Document version history...3 Security...3 General requirements...3 HTTP transmission security mechanism...3

More information

Orders API v4. Document revision Date of Issue: 04 October 2018 Date of revision: 14 November Nick Palmer.

Orders API v4. Document revision Date of Issue: 04 October 2018 Date of revision: 14 November Nick Palmer. Orders API v4 Document revision 4.0.1 Date of Issue: 04 October 2018 Date of revision: 14 ovember 2018 ick Palmer Product Manager Page 1 of Table of Contents 1. Purpose... 3 2. Glossary of Terms... 3 3.

More information

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes Session 8 Deployment Descriptor 1 Reading Reading and Reference en.wikipedia.org/wiki/http Reference http headers en.wikipedia.org/wiki/list_of_http_headers http status codes en.wikipedia.org/wiki/_status_codes

More information

HTTP Reading: Section and COS 461: Computer Networks Spring 2013

HTTP Reading: Section and COS 461: Computer Networks Spring 2013 HTTP Reading: Section 9.1.2 and 9.4.3 COS 461: Computer Networks Spring 2013 1 Recap: Client-Server Communication Client sometimes on Initiates a request to the server when interested E.g., Web browser

More information