Partner Web Services. GetMyPrice Service Manual

Size: px
Start display at page:

Download "Partner Web Services. GetMyPrice Service Manual"

Transcription

1 Partner Web Services GetMyPrice Service Manual

2 Contents 1 Introduction Overview Supporting Resources Service Overview Benefits of GetMyPrice Service Service Endpoints Request/Response Schema Request Detailed Request JSON Structure Response Detailed Response JSON Structure Sample Requests/Responses GetMyPrice with Customer number, part number and date GetMyPrice with Customer number, part number, date and agreement number Generic Error applicable for all request types Formatting standards Error Messages System Error codes Service Error Codes Tables Table 1: Service endpoints... 7 Table 2: Detailed JSON Request Structure... 8 Table 3: Detailed JSON Response Structure... 9 Table 4: Authentication Error Codes Table 5: Application Error Codes AUTODESK GetMyPrice Service Reference Manual 2

3 Figures Figure 1: Price sync process... 6 Figure 2: Product sync process... 6 AUTODESK GetMyPrice Service Reference Manual 3

4 Revision History Version Date Author Comments 2.2 Oct 22, 2015 AR Added Revision History section 2.3 Nov 3, 2015 AR Corrected Utilization to display Optional instead of Mptional for the quantity field 2.4 Dec 22, 2015 AR Updated Response Messages 2.5 Mar 16, 2016 PL Updated Error Codes and Messages Aug 31, 2017 Jordi Gilabert API name format fixed Sep 1, 2017 Jordi Gilabert Full document re-format Oct 03, 2017 Oscar Lopez Removed all QA references AUTODESK GetMyPrice Service Reference Manual 4

5 1 Introduction 1.1 Overview Autodesk s Partner Web Services is an automation solution for order placement directly from its partners to Autodesk, all with low-touch from partners and zero-touch from Autodesk. This new business capability enables true B2B web service transactions between partners and Autodesk. For partners to effectively implement Autodesk s web services, partner developers should be familiar with REST web services, OAuth, and JSON. 1.2 Supporting Resources Autodesk Partner Developer Portal: The Autodesk Partner Developer Portal offers a place for partner developers to build and test their own applications by subscribing to Autodesk web services and helps partners get connected with Autodesk. The Partner Developer Portal features a robust repository of service documentation, provides an ongoing conduit to the services to support partner teams, and features a community to allow partner developers to share insights and information with each other. A partner administrator can invite and keep track of all the developers associated with the account and all the details of the applications they submit. Developers can then explore the information related to a service, understand the way the service works, and test the service to see how it works with their applications. For more information, please visit Partner Developer Center. Authentication API Documentation: This documentation guides partners through the process of generating credentials, signatures, and access tokens necessary for utilizing service APIs. It also covers the development of a partner s integrating application. It provides basic information on web service integration and demonstrates the development of a typical application. For more information, please check the latest version of the API Authentication Guide. 2 Service Overview The purpose of the GetMyPrice service is to allow for the following: Provide Disti/DVAR with their purchase price Provide non-direct Partners with SRP During order creation (via PlaceOrder), provide the price that the Partner is paying on that particular order (e.g. if adding to an existing contract, the price on the order may need to be pro-rated.) AUTODESK GetMyPrice Service Reference Manual 5

6 Figure 1: Price sync process Figure 2: Product sync process 2.1 Benefits of GetMyPrice Service A lightweight REST web service that can be consumed easily from any application via HTTP(s) connection. Provides correct pricing by Partner and SKU. Assists with order entry and validation Improves data quality by retrieving real time price information. AUTODESK GetMyPrice Service Reference Manual 6

7 3 Service Endpoints Environment Staging Production URL Table 1: Service endpoints 4 Request/Response Schema 4.1 Request The Request Schema for GetMyPrice has the following Fields as inputs. The fields customer_number, part_number and price_date must be included in a Partner s request, along with one of the following combinations of the remaining fields: None of them (quantity of 1 will be assumed) agreement_number (quantity of 1 will be assumed) opportunity_number (quantity of 1 will be assumed) quantity agreement_number, quantity opportunity_number, quantity AUTODESK GetMyPrice Service Reference Manual 7

8 4.1.1 Detailed Request JSON Structure The following table explains the schema for the Request of the API service. * Please note that Bold elements denote Groups. Plain elements denote Input Fields. Payload Structure Cardinality Description / Condition Data Type Length Example part_number O / M The SKU of the product String - Free Text J1-WW8695-T548 customer_number M CSN Number of the partner, who is calling the service String - Free Text opportunity_number O A code which would entitle the customer to a discount String - Free Text 10 A agreement_number O The agreement number of an order String - Free Text price_date M The date where the given price is valid. Has to be current or in the future. String - Date ISO 8601 format quantity O Assumed to be 1 if not provided Number - Integer 13 5 Table 2: Detailed JSON Request Structure 4.2 Response Detailed Response JSON Structure The following table explains the schema for the Response of the API service. * Please note that Bold elements denote Groups. Plain elements denote Input Fields. AUTODESK GetMyPrice Service Reference Manual 8

9 Payload Structure Cardinality Description / Condition Data Type Length Example status_code M Status Code of the request Number - Integer Set to "200" if no error has product HTTP Error Code in case of error status M Status of the Request OK: Service returned successfully Error: An error was produced message M Static value set to "Price" if status is OK. Blank if status is Error String - LoV - OK Object - Price { - If status is Error, then error_code and error_message are returned error_code M The error code Please refer to Table 5 error_message M A short description of the error String - LoV - UAN-GEN String - Free Text - PartNumber not found Please refer to Table 5 } response M - Object - - { - If status is OK, then net_price, currency and - - formatted_net_price are returned net_price M The net price of the product(s) Number - Fraction currency M The 3 digit currency code as defined in ISO 4217 String - ISO Currency - USD Code formatted_net_price M The net price with the appropriate currency sign String - Free Text - $ } Table 3: Detailed JSON Response Structure AUTODESK GetMyPrice Service Reference Manual 9

10 5 Sample Requests/Responses Below some sample requests are provided as a reference. Please note that there are lots of other combinations possible. 5.1 GetMyPrice with Customer number, part number and date Request v1/sku/prices?part_number=057j1-ww8695-t548&customer_number= &price_date= &quantity=1 Response with no errors { } "status_code": 200, "status": "OK", "message": "Price", "response": { "net_price": 296.4, "currency": "USD", "formatted_net_price": "$296.40" } 5.2 GetMyPrice with Customer number, part number, date and agreement number Request v1/sku/prices?part_number=827i1-ww7097- T148&customer_number= &agreement_number= &price_date= &quantity=1 Response with no errors { "status_code": 200, "status": "OK", "message": "Price", "response": { "net_price": 296.4, AUTODESK GetMyPrice Service Reference Manual 10

11 } } "currency": "USD", "formatted_net_price": "$296.40" 5.3 Generic Error applicable for all request types { } "status_code": 400, "status": "Error", "message": { "error_code": "UAN-GEN-00108", "error_message": "PartNumber not found" }, "response": {} 6 Formatting standards UUID Version 4 Unique randomly generate string ISO 8601 YYYY-MM-DD date format ISO Two letter language code ISO alpha-2 format two letter country code form 7 Error Messages Prior to reaching Autodesk systems, the service validates the request for authorization of services and authentication of the requester. Below is a list of error codes and their mapping to messages for scenarios such as when a request is not authorized or if the requester is not authenticated. AUTODESK GetMyPrice Service Reference Manual 11

12 7.1 System Error codes The following table shows the system error codes generated for any system issues in Autodesk environment and their respective error messages present in response messages: HTTP Status Code Autodesk Internal Message Error Code 200 OK 201 Created 304 Not Modified 400 Bad Request Error: 4000 Incorrect or malformed request Unauthorized Error: 4100 No CSN was passed in the request Unauthorized Error: 4101 No HMAC Signature passed in the request 401 Unauthorized Error: 4102 No HMAC Client ID passed in the request 401 Unauthorized Error: 4103 No HMAC Timestamp passed in the request 401 Unauthorized Error: 4104 No Authorization passed in the request 401 Unauthorized Error: 4105 Invalid token 401 Unauthorized Error: 4106 Something went wrong generating the token 403 Forbidden Error: 4301 HMAC signature was passed, but not a correct one 403 Forbidden Error: 4302 HMAC timestamp was passed, but not a correct one 403 Forbidden Error: 4300 CSN was passed, but not a correct one Table 4: Authentication Error Codes 7.2 Service Error Codes Table below lists the possible error codes returned by the GetMyPrice Service due to Business Logic or Data related errors: Error Code APG-DWS-INV- 002 UAN-GEN UAN-GEN UAN-GEN UAN-GEN UAN-GEN UAN-GEN Error Message Provided customer number is invalid. Customer number is required. Please enter SKU number Invalid Customer number. Please check your entry and try again Please provide a valid parameters combination Please provide the right parameters names Order number should be exact 10 characters. Please check your entry and try again Table 5: Application Error Codes AUTODESK GetMyPrice Service Reference Manual 12

Partner Web Services. GetOrderStatus Version 1 Service Manual

Partner Web Services. GetOrderStatus Version 1 Service Manual Partner Web Services GetOrderStatus Version 1 Service Manual Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting Resources... 4 2 Service Overview... 4 3 Service Endpoints... 5 4 Request/Response

More information

Partner Web Services. Get License Service Manual

Partner Web Services. Get License Service Manual Partner Web Services Get License Service Manual Contents 1 Revision History... 4 2 Introduction... 5 2.1 Overview... 5 2.2 Supporting Resources... 5 3 Service Overview... 5 4 Service Endpoints... 7 5 Request/Response

More information

Partner Web Services. PlaceOrder Version 2 Service Manual

Partner Web Services. PlaceOrder Version 2 Service Manual Partner Web Services PlaceOrder Version 2 Service Manual Contents 1 Introduction... 6 1.1 Overview... 6 1.2 Supporting Resources... 6 2 Service Overview... 6 2.1 Subscription to Autodesk... 7 2.1.1 Renewable

More information

Partner Web Services. PlaceOrder Version 1 Service Manual

Partner Web Services. PlaceOrder Version 1 Service Manual Partner Web Services PlaceOrder Version 1 Service Manual Contents 1 Introduction... 8 1.1 Overview... 8 1.2 Supporting Resources... 8 2 Subscription to... 8 2.1 Recurring (auto-renew)... 9 2.2 Renewable...

More information

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual CONTENTS Revision History... 2 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting documents... 4 2 Getting Started... 4 3 GetOrderDetails

More information

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual CONTENTS Revision History... 2 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting documents... 4 2 Getting Started... 4 3 GetOrderDetails

More information

Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual

Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual CONTENTS Revision History... 3 1 Introduction... 9 1.1 Overview... 9 1.2 Supporting Documentation... 9 2 Getting Started... 9 3 PlaceOrder

More information

Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual

Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual Digital Distribution Web Services (DDWS) PlaceOrder - Service Manual CONTENTS Revision History... 4 1 Introduction... 9 1.1 Overview... 9 1.2 Supporting Documentation... 9 2 Getting Started... 9 3 PlaceOrder

More information

TACHO ONLINE API. TUNGVOGNSSPECIALISTEN APS Københavnsvej 265, DK-4000 Roskilde

TACHO ONLINE API. TUNGVOGNSSPECIALISTEN APS Københavnsvej 265, DK-4000 Roskilde 2018 TACHO ONLINE API TUNGVOGNSSPECIALISTEN APS Københavnsvej 265, DK-4000 Roskilde CONTENT What s new?... 5 Tacho activities... 5 Welcome... 5 More information... 5 Terminology... 5 TVS... 5 Tacho Online...

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

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

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

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

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

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

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

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

More information

Moxie Notifications Documentation

Moxie Notifications Documentation Moxie Notifications Documentation Release 0.1 Mobile Oxford team, IT Services, University of Oxford April 23, 2014 Contents i ii CHAPTER 1 HTTP API 1.1 Endpoint 1.1.1 Format Dates are expressed as YYYY-mm-DDTHH:mm:ss

More information

SMS Relay. API Documentation SPLIO - SPRING Contact and Campaign SMS Relay API - EN v1.2.docx

SMS Relay. API Documentation SPLIO - SPRING Contact and Campaign SMS Relay API - EN v1.2.docx SMS Relay API Documentation 2017-09-07 Summary Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3 Asia hosting... 3 Authentication... 3 Single call... 4 Bulk call... 4 Transactional messages...

More information

Authorize.Net Magento 2.x Payment Module

Authorize.Net Magento 2.x Payment Module Authorize.Net Magento 2.x Payment Module User Guide Revision 1.0.1 September 17, 2018 Sep 17 2018 Authorize.Net Global Payment Management for Magento 2.x 1 Contents Document History... 4 1. Introduction...

More information

Table of Contents. Developer Manual...1

Table of Contents. Developer Manual...1 Table of Contents Developer Manual...1 API...2 API Overview...2 API Basics: URL, Methods, Return Formats, Authentication...3 API Errors...4 API Response Examples...6 Get Articles in a Category...6 Get

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

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

Open edx Data Analytics API Version 0 Alpha. Release

Open edx Data Analytics API Version 0 Alpha. Release Open edx Data Analytics API Version 0 Alpha Release September 24, 2015 Contents 1 Read Me 1 2 Change Log 3 3 edx Data Analytics API Overview 5 3.1 edx Data Analytics API Version 0, Alpha................................

More information

Updated: April, 2018 (see what s new) Table of Contents. Overview Switching from Maintenance to Subscription Pricing for Switching...

Updated: April, 2018 (see what s new) Table of Contents. Overview Switching from Maintenance to Subscription Pricing for Switching... Important Updates on Maintenance Plans Frequently Asked Questions Customers This document answers frequently asked questions about maintenance plan changes as we move to one business model. Updated: April,

More information

Consents Service - SMBC NextGenPSD2

Consents Service - SMBC NextGenPSD2 Consents Service - SMBC NextGenPSD2 1.3.SMBC February 2019 Framework (Berlin Group V1.3) Summary OAS3 SMBC offers third party access to accounts (XS2A) in a safe and efficient way using Application Programming

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

Documenting APIs with Swagger. TC Camp. Peter Gruenbaum

Documenting APIs with Swagger. TC Camp. Peter Gruenbaum Documenting APIs with Swagger TC Camp Peter Gruenbaum Introduction } Covers } What is an API Definition? } YAML } Open API Specification } Writing Documentation } Generating Documentation } Alternatives

More information

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6 Purchase Tracking Web Service Technical Documentation Document Version 1.6 Revision date 02/28/2014 2 1 Overview The PriceSpider Where-to-Buy (WTB) is an online and local retailer locator. Manufacturers

More information

If the presented credentials are valid server will respond with a success response:

If the presented credentials are valid server will respond with a success response: Telema EDI REST API Telema EDI REST API allows client to send and receive document to and from Telema server. In order to use EDI REST API client must have correct channel configured in Telema system.

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

GSMA Hackathon Easypaisa Integration Guide

GSMA Hackathon Easypaisa Integration Guide GSMA Hackathon Easypaisa Integration Guide Version 1.1 3 rd Oct 2017 1 Document Information Version History Version # Date Prepared By Reviewed By Reason for change V 1.0 23 rd Sept Usama - - V1.1 3 rd

More information

econtracts for Tier1 partners COE01 USER GUIDE

econtracts for Tier1 partners COE01 USER GUIDE econtracts for Tier1 partners COE01 USER GUIDE COPYRIGHT & TRADEMARKS 2017 ZIH Corp. The copyrights in this manual are owned by ZIH Corp. Unauthorized reproduction of this manual or the software and/or

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

API Reference (Contract Management)

API Reference (Contract Management) FUJITSU Cloud Service K5 IaaS API Reference (Contract Management) Version 1.5 FUJITSU LIMITED All Rights Reserved, Copyright Fujitsu Limited 2016 K5IA-DC-M-001-001E Preface Structure of the manuals Manual

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

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

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

DIGITAL SERVICES. API Documentation Retrieve Transactions

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

More information

The Callback API Guide

The Callback API Guide The Callback API Guide A reference guide for developers who want to calculate their own shipping or promotional discounts for their Checkout by Amazon orders. 2009-11 Amazon.com, Inc. or its Affiliates

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

KIWIRE 2.0 API Documentation. Version (February 2017)

KIWIRE 2.0 API Documentation. Version (February 2017) KIWIRE 2.0 API Documentation Version 1.0.0 (February 2017) 1 Proprietary Information Notice This document is proprietary to Synchroweb (M) Sdn Bhd. By utilizing this document, the recipient agrees to avoid

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

Introduction to T-Mobile ID

Introduction to T-Mobile ID Introduction to T-Mobile ID Michael Engan Identity Vision for T-Mobile Agenda Background Why an identity project What is going on with identity in the industry T-Mobile ID Technical details Architecture

More information

HTTP API Specification V2.7

HTTP API Specification V2.7 HTTP API Specification V2.7 Version information Version Comment Date V2.7 Added testsms call 2017-08-09 V2.6 HTTPS information added 2016-12-10 Added error code 4007 V2.5 Changed endpoints 2016-12-09 Added

More information

Tigrillo API User Guide

Tigrillo API User Guide Tigrillo API User Guide Document Reference: 8281 September 2016 Version: 9 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Sep 2015 Sam Smith Branding updated Updated to be used with 8314

More information

K5 Portal User Guide

K5 Portal User Guide FUJITSU Cloud Service K5 K5 Portal User Guide Version 2.6 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures for the services provided by FUJITSU Cloud Service

More information

vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0

vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0 vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Body: JSON Message representing a Transaction object (See Transaction Objects for Details)

Body: JSON Message representing a Transaction object (See Transaction Objects for Details) Overview SixthCents API is REST based and exposes HTTP endpoints. The API has several URLs and all responses are standard HTTP codes so you easily know what the outcome of an operation was. Authentication

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

SCA11H CLOUD SERVER INTERFACE SPECIFICATION

SCA11H CLOUD SERVER INTERFACE SPECIFICATION 1 (12) SCA11H CLOUD SERVER INTERFACE SPECIFICATION SCA11H Doc. No. 1325 Rev. 4 2 (12) Table of Contents 1 Introduction...3 2 Service information...3 3 Writing Data...4 3.1 Header...4 3.2 Message body...4

More information

Datto Disaster Tracking

Datto Disaster Tracking Datto Disaster Tracking Design/Architecture Document Masters of Disaster Nsama Chipalo, Brandon Cole, Aaron Damrau, Jhossue Jimenez, Jacob Peterson Last Updated May 11th, 2015 Table of Contents Table of

More information

PassBy[ME] API Documentation

PassBy[ME] API Documentation PassBy[ME] API Documentation Document id: PBM_01 Document Version: 1.1.12 Author: Microsec Ltd. Date: 2015.09.13. API Version 1 1 Table of contents 1 Introduction... 4 2 Terms... 5 3 PassBy[ME] message

More information

Integration Architecture Of SDMS

Integration Architecture Of SDMS Integration Architecture Of SDMS 20 May 2017 Version 1.0 (Rakesh Ranjan, Consultant-IT) Table of Content 1 ABOUT SDMS...2 2 OBJECTIVE & STRUCTURE OF THIS DOCUMENT...2 3 TRANSACTIONAL SERVICES...3 3.1 HIGH

More information

Inventory Data Format How to upload your data into OneAero Version 3

Inventory Data Format How to upload your data into OneAero Version 3 Inventory Data Format How to upload your data into OneAero Version 3 August 2008 For questions or comments, please contact: Dan Fitzpatrick - dan@oneaero.com +1 800 331-3133 x411 or +1 (970) 586-1086 x411

More information

daa isupplier User Guide

daa isupplier User Guide daa isupplier User Guide December 2017 Contents Prerequisites... 3 Introduction... 4 1.1 Registration... 6 1.2 Login... 6 1.3 Basic Overview of the isupplier Portal Homepage... 7 1.4 Purchase Order Acceptance

More information

KIWIRE 2.0 PMS API. Version (July 2017)

KIWIRE 2.0 PMS API. Version (July 2017) KIWIRE 2.0 PMS API Version 1.0.0 (July 2017) Proprietary Information Notice This document is proprietary to Synchroweb (M) Sdn. Bhd. By utilizing this document, the recipient agrees to avoid publication

More information

econtracts for Tier1 partners COURSE CODE: COE01

econtracts for Tier1 partners COURSE CODE: COE01 econtracts for Tier1 partners COURSE CODE: COE01 April 2017 Introduction Welcome to the econtracts for Partners course. This course provides a brief overview of what the Zebra econtracts Portal is used

More information

Freedom of Information Act 2000 reference number RFI

Freedom of Information Act 2000 reference number RFI P. Norris By email to: xxxxxxxxxxxxxxxxxxxxxx@xxxxxxxxxxxxxx.xxm 02 November 2011 Dear P. Norris Freedom of Information Act 2000 reference number RFI20111218 Thank you for your request under the Freedom

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

OMF Documentation. Release 1.1-alpha1. OSIsoft, LLC

OMF Documentation. Release 1.1-alpha1. OSIsoft, LLC OMF Documentation Release 1.1-alpha1 OSIsoft, LLC Oct 03, 2018 Contents 1 v1.1 1 2 Overview 3 3 Contents 5 3.1 What s New............................................... 5 3.2 Headers..................................................

More information

Deltek Touch CRM for GovWin Capture Management. User Guide

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

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

ACI -Solidifi 0713 Form Technical Support FAQ s

ACI -Solidifi 0713 Form Technical Support FAQ s ACI -Solidifi 0713 Form Technical Support FAQ s Updated: March 2015 1. ERROR Message Report does not allow uploads 2. ERROR Message Data Form Validation 3. ERROR Message Unauthorized Access 4. ERROR Message

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

AEM Mobile: Setting up Google as an Identity Provider

AEM Mobile: Setting up Google as an Identity Provider AEM Mobile: Setting up Google as an Identity Provider Requirement: Prerequisite knowledge Understanding of AEM Mobile Required Products AEM Mobile Google Account Generating the client ID and secret To

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 Specification Doc

API Specification Doc API Specification Doc (SMS System Gateway) Version Date Description 1.0 01-Nov-2017 Initial draft 1.1 18-Feb-2018 Updated to include Delivery report call back options 1.2 10-Apr-2018 Appended API to include

More information

Session Viewer. Tutorial

Session Viewer. Tutorial Session Viewer Tutorial OVERVIEW Here at Travolutionary, we believe in technical transparency and self-serviceable platforms. In light of these principles, we have developed a Session Viewer tool. This

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

Entrust Cloud Enterprise. Enrollment Guide

Entrust Cloud Enterprise. Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Document issue: 1.0 Copyright 2016 Entrust. All rights reserved. Entrust is a trademark or a registered trademark of

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

Create Service Contract

Create Service Contract Create Service Contract This guide will cover: The process of creating service contracts with suppliers. This process replaces the Office of General Counsel Checklist (specifically the Overview tab). However,

More information

Flexepin Cash Topup Vouchers. API based Business UAT

Flexepin Cash Topup Vouchers. API based Business UAT Flexepin Cash Topup Vouchers API based Business UAT Document History Revision Description of Change Date Author 1.0 UAT Flexepin API 10-Nov-15 GB 1.1 Minor rewording 05 Jan 2016 ED 1.2 Amended test cases

More information

Finance: Customer Invoices Create, Find, Print, and Copy

Finance: Customer Invoices Create, Find, Print, and Copy PURPOSE Workday considers customers to be a type of business entity and to record your sales and create receivables accounting you can use customer invoices. Triggers for invoice creation include the shipment

More information

F-Billing Revolution 2015 User Manual F-Billing Software

F-Billing Revolution 2015 User Manual F-Billing Software F-Billing Revolution 2015 User Manual 2 F-Billing Revolution 2015 User Manual Table of Contents Foreword 0 Part I Introduction 4 Part II Quick Start Guide 5 Part III Invoice Email Settings 6 Part IV Invoices

More information

The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform.

The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform. The Merit Palk API allows 3rd party developers to expand and build on the Merit Palk platform. The Merit Palk API is a RESTful API that is used to access Merit Palk companies using HTTP and JSON. The API

More information

GET YOUR APP READY FOR QUICKBOOKS CONNECT

GET YOUR APP READY FOR QUICKBOOKS CONNECT GET YOUR APP READY FOR QUICKBOOKS CONNECT PEARCE AURIGEMMA AUGUST 14, 2014 Pearce Aurigemma Pearce@Intuit.com Sr. Developer Evangelist New API Features QuickBooks Connect Deadlines Apps.com Workflows Common

More information

The production version of your service API must be served over HTTPS.

The production version of your service API must be served over HTTPS. This document specifies how to implement an API for your service according to the IFTTT Service Protocol. It is recommended that you treat this document as a reference and follow the workflow outlined

More information

Supplier Enablement Quick Reference Guide (QRG) October 2017

Supplier Enablement Quick Reference Guide (QRG) October 2017 Supplier Enablement Quick Reference Guide (QRG) October 2017 1 Coupa Supplier Enablement Overview Coupa - Is a reimagining of the tools and technology we use to engage our suppliers from sourcing all the

More information

ETSI GS MEC 016 V1.1.1 ( )

ETSI GS MEC 016 V1.1.1 ( ) GS MEC 016 V1.1.1 (2017-09) GROUP SPECIFICATION Mobile Edge Computing (MEC); UE application interface Disclaimer The present document has been produced and approved by the Mobile Edge Computing (MEC) Industry

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

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx API Documentation 2017-09-08 Summary Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3 Asia hosting... 3 Authentication... 3 Request format... 4 Response format... 4 Error Codes & Responses...

More information

BSE-SINGLE SIGN ON. For Brokers/ Banks/ Mutual Funds

BSE-SINGLE SIGN ON. For Brokers/ Banks/ Mutual Funds BSE-SINGLE SIGN ON For Brokers/ Banks/ Mutual Funds Contents Introduction:... 2 Features:... 2 Advantages:... 2 On-boarding process.... 3 SSO application Login Process... 7 Authentication via OTP... 7

More information

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication.

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication. Poplatek Server API Version: 2016-06-22.2 Quick links Browser API Pay REST API Get Transaction Status Cancel Refund Settlement report Changes 2016-06-22: Document sandbox URL endpoints. Small miscellaneous

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

vrealize Log Insight Developer Resources

vrealize Log Insight Developer Resources vrealize Log Insight Developer Resources vrealize Log Insight 4.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

How to obtain and manage K2 License Keys

How to obtain and manage K2 License Keys How to obtain and manage K2 License Keys June 14 DOCUMENT VERSION 1.0 CONTENTS INTRODUCTION...3 HOW TO OBTAIN A K2 LICENSE KEY...3 HOW TO REGISTER A K2 LICENSE...4 Manage or update the License Key in the

More information

API Reference Manual

API Reference Manual FUJITSU Cloud Service K5 API Reference Manual Version.5 FUJITSU LIMITED Preface Purpose of This Document This guide describes the specification of the API (Application Programming Interface) provided by

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

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

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0 SONERA OPERATOR SERVICE PLATFORM FREQUENTLY ASKED QUESTIONS, version 2.0 OPAALI PORTAL Q: Why Registration link to Opaali portal does not work currently, HTTP Operation Forbidden error is shown? A: Sonera's

More information

2. Any VIP screen, click on the VIP Cart button located in the top right corner of the screen.

2. Any VIP screen, click on the VIP Cart button located in the top right corner of the screen. Access VIP Cart VIP Order Entry The VIP Cart is only accessible after parts have been added to the cart from either the Single Line Price screen or the Multi Line Price screen. For more information on

More information

Frequently Asked Questions Customers

Frequently Asked Questions Customers Important Updates on Maintenance Plans Frequently Asked Questions Customers This document answers frequently asked questions about maintenance plan changes as we move to one business model. Updated: May

More information

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS

IBM. Bulk Load Utilities Guide. IBM Emptoris Contract Management SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS IBM Emptoris Contract Management IBM Bulk Load Utilities Guide 10.1.2 SaaS ii IBM Emptoris Contract Management: Bulk Load Utilities

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

The new SAP PI REST adapter Unveiled v1.0. SAPience TECH commission, Nov Dimitri Sannen SAP Solution Architect

The new SAP PI REST adapter Unveiled v1.0. SAPience TECH commission, Nov Dimitri Sannen SAP Solution Architect The new SAP PI REST adapter Unveiled v1.0 SAPience TECH commission, Nov 19 2015 Dimitri Sannen SAP Solution Architect Agenda TheValueChain What is REST? Availability Capabilities Demo SAP TechEd 2015 take-

More information

AT&T Developer Best Practices Guide

AT&T Developer Best Practices Guide Version 1.2 June 6, 2018 Developer Delivery Team (DDT) Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided to you (both the individual receiving

More information

NetIQ Identity Manager Driver for REST Implementation Guide. February 2017

NetIQ Identity Manager Driver for REST Implementation Guide. February 2017 NetIQ Identity Manager Driver for REST Implementation Guide February 2017 Legal Notice For information about NetIQ trademarks, see https://www.netiq.com/company/legal/. Copyright (C) 2017 NetIQ Corporation.

More information

ideal QR - Merchant Implementation Guidelines (EN)

ideal QR - Merchant Implementation Guidelines (EN) ideal QR - Merchant Implementation Guidelines (EN) Version: 1.5 Date: 19-02-2018 Copyright Currence ideal B.V. All rights reserved. Page 1 of 16 Versions... version Adjustments 1.0 First version for extended

More information