Nebula Exchange Integration API v1

Size: px
Start display at page:

Download "Nebula Exchange Integration API v1"

Transcription

1 Nebula Exchange Integration API v1 The APIs have as base endpoint : Production : Staging : Changelog (Novembre.) New base url for all Nebula API endpoints. Instead of see (T for Trade API). Changelog (October 18, 2018) Staging is using https now. Changelog (August 6, 2018) Added endpoints private GET /wallets private GET /wallets/:code Fixing some typos inside this document. Add 3 rd section with code samples. Changelog (July 31, 2018) GET /trades renamed to GET /tradehistory Added endpoints : public : GET /orderbook (L2) public : GET /orderbookl3 (L3) private : GET /trades private : GET /orders/canceled private : GET /orders/closed

2 1. Public API The following APIs are public (no need of authentication) 1.1 Coin List Return list of all coins with description : GET /coins Response example: Status : 200 OK [ ] "code": "ARN", "desc": "Aeron", "code": "ARX", "desc": "Assistive Reality", Property Type Description code String Coin s code desc String Coin s description

3 1.2 Symbol List Return list of symbols with detail. Can be send with optional query params like token and/or against GET /symbols token (optional) String Coin traded in a pair (eg : ARN) against (optional) String Coin against a token in a pair (eg : ETH) Response example: Status : 200 OK [ ] "symbol": "PIT_ETH", "token": "PIT", "against": "ETH", "symbol": "UFR_ETH", "token": "UFR", "against": "ETH", Status : 400 Bad Request "message":"invalid query token= " Property Type Description symbol String Symbol of a pair token String Coin trade in a pair against String Coin against a token in a pair

4 1.3 Exchange List Return list of exchanges status for each symbol(pair). Can be send with optional query params like token and/or against. GET /exchanges token (optional) String Coin traded in a pair (eg : ARN) against (optional) String Coin against a token in a pair (eg : ETH) Response example: Status : 200 OK [ ], "symbol": "ARN_ETH", "highprice": 0.5, "lowprice": 0.3, "change": , "lastprice": 0.4, "volume": "symbol": "ARN_EURT", "highprice": 0.89, "lowprice": 0.003, "change": 23.56, "lastprice": 0.4, "volume": 470, Status : 400 Bad Request "message":"invalid query token= " Property Type Description symbol String Symbol of a pair highprice Number High price (24H) lowprice Number Low price (24H) change Number Change in percent (24H) lastprice Number Last price volume Number Volume (24H)

5 1.4 Historical trades Return historical trades executed. Trades returned in ascending order. Option available to query historical trades based on tradeid, default is to return latest 100 trades. GET /tradehistory/symbol Symbol (required) String Pair traded: (eg: CAV_ETH) fromid (optional) Integer query by tradeid, display trades after this ID inclusive (optional, default to return latest trades) Limit (optional) Integer number of trades returned (optional, default to 100) Start (optional) Date Date start limit End (optional) Date Date end limit Sample : /tradehistory/cav_eth?limit=200&fromid=400 Response example: [ id: 14322, timestamp: , price: , amount: , side: "buy", id: 14323, timestamp: , price: , amount: , side: "buy", id: 14324, timestamp: , price: , amount: , side: "sell", id: 14325, timestamp: , price: , amount: , side: "buy" ] Response field Type Description id Integer Numerical tradeid timestamp Integer Unix timestamp in seconds price Float Price at which trade executed amount Float Amount of trade side String Buy or sell

6 1.5 Order book (L2) Return information on open orders with bid (buy) and ask (sell) prices, sorted and grouped by prices. Sorting is based on side : ascending for sell (ask) and descending for buy (bid). GET /orderbook/symbol Symbol (required) String Pair traded: (eg: CAV_ETH) limit Integer number of trades returned (optional, default to 10) Sample : /orderbook/cav_eth?limit=10 Response example: "bids": [ "amount": 100, "price": , "total": 4.52, "count": 1, "totalsource": 100, "totaltarget": 4.52, "amount": , "price": 0.045, "total": , "count": 2, "totalsource": , "totaltarget": ], "asks": [ "amount": 60, "price": 0.05, "total": 3, "count": 3, "totalsource": 60, "totaltarget": 3, "amount": 100, "price": 0.051, "total": 5.1, "count": 2, "totalsource": 160, "totaltarget": 8.1 ], "timestamp": Response field Type Description bids Array of structured data Bid list grouped by price asks Array of structured data Ask list grouped by price timestamp Integer Unix timestamp in seconds amount Float Amount price Float Price total Float Amount * Price count Integer Number of grouped orders with the same price totalsource Float Cumulated amount totaltarget Float Cumulated total (amount * price) Remark : to obtain L1 orderbook, please provide limit=1.

7 1.6 Detailed Order book (L3) Return information on open orders with bid (buy) and ask (sell) prices, sorted by price without grouping. Orders are listed one by one. So the list can contain duplicate price inside, no id or personal information about each order: only amount and price. Sorting is based on side : ascending for sell (ask) and descending for buy (bid). GET /orderbookl3/symbol Symbol (required) String Pair traded: (eg: CAV_ETH) limit Integer number of trades returned (optional, default to 10) Sample : /orderbook/cav_eth?limit=10 Response example: "bids": [ "amount": 100, "price": , "amount": , "price": ], "asks": [ "amount": 60, "price": 0.05, "amount": 100, "price": ], "timestamp": Response field Type Description bids Array of structured data Bid list grouped by price asks Array of structured data Ask list grouped by price timestamp Integer Unix timestamp in seconds amount Float Amount price Float Price

8 2 Private API These endpoints need each user enter API Key and API Secret KEY: - List order book (current open orders) - Create new order (MARKET or LIMIT type) - Cancel an Order Please visit nebula Application to check your API keys (Menu API Keys). 2.1 Launch an authenticated API endpoint Pseudo code to launch an authenticated endpoint: Know the endpoint and Prepare a body containing the payload Prepare, crypt and sign payload Prepare options containing URL and headers Launch request and Analyze response Headers name: X-NEB-APIKEY, X-NEB-PAYLOAD and X-NEB-SIGNATURE Please examine this code writing in javasccript. 2.2 Get Open/closed/canceled orders Return user s open, closed or canceled orders. GET /v1/orders/symbol GET /v1/orders/closed/symbol GET /v1/orders/canceled/symbol Symbol (required) String Pair ordered: (eg: CAV_ETH) Side (optional) String buy or sell Type (optional) String limit or market Start (optional) Date Date start limit End (optional) Date Date end limit limit Integer number of trades returned (optional, default to 10) Response field Type Description symbol String Pair timestamp Integer Unix timestamp in seconds (creation date) id Integer Numerical order Id side String Buy or sell type String Limit or Market price Float Price at which trade executed quantity Float Quantity ordered remainingqtt Float Remaining Quantity not fulfilled Status String open

9 Data sample "symbol":"pit_eth","timestamp": ,"id":465,"type":"limit","side":"sell","quantity ":200,"price":0.0005,"remainingQtt":200,"status":"open", "symbol":"pit_eth","timestamp": ,"id":466,"type":"limit","side":"sell","quantity ":200,"price":0.0005,"remainingQtt":200,"status":"open", "symbol":"pit_eth","timestamp": ,"id":470,"type":"limit","side":"sell","quantity ":250,"price":0.001,"remainingQtt":250,"status":"open", "symbol":"pit_eth","timestamp": ,"id":471,"type":"limit","side":"sell","quantity ":2500,"price":0.0004,"remainingQtt":1900,"status":"open", "symbol":"pit_eth","timestamp": ,"id":473,"type":"limit","side":"sell","quantity ":200,"price":0.0005,"remainingQtt":200,"status":"open" 2.3 Get Order by id Return user s open orders. GET /v1/orders/symbol/:id Symbol (required) String Pair ordered: (eg: CAV_ETH) Id (required) Integer ID of order Output : identical to GET /orders/ 2.4 Get my trades Return user s historical trades executed. Trades returned in ascending order. Option available to query historical trades based on tradeid, default is to return latest 100 trades. GET /trades/symbol Symbol (required) String Pair traded: (eg: CAV_ETH) fromid (optional) Integer query by tradeid, display trades after this ID inclusive (optional, default to return latest trades) limit Integer number of trades returned (optional, default to 100) Start (optional) Date Date start limit End (optional) Date Date end limit side String Buy or sell Sample : /trades/cav_eth?limit=200&fromid=400 Response example: [ id: 14322, timestamp: , price: , amount: , side: "buy", id: 14323, timestamp: , price: , amount: , side: "buy", id: 14324, timestamp: , price: , amount: , side: "sell", id: 14325, timestamp: , price: , amount: , side: "buy"

10 ] Response field Type Description id Integer Numerical tradeid orderid Integer Id of triggering/triggered order timestamp Integer Unix timestamp in seconds price Float Price at which trade executed amount Float Amount of trade side String Buy or sell

11 2.5 Get balances Get user balances by coin. GET /v1/wallets GET /v1/wallets/code code (optional) String Coin code like PIT, ETH hidezero (optionnal) Boolean If provided, hide zero balance Return value: list of balance by coin code. Data sample as response: Response for url /v1/wallets ["currency":"pit","amount":10000,"availableamount":9270,"used":730, "currency":"eurt","amount":10000,"availableamount":10000,"used":0, "currency":"bat","amount":10000,"availableamount":10000,"used":0 ] Response for url /v1/wallets?hidezero=true ["currency":"pit","amount":10000,"availableamount":9270,"used":730, "currency":"eurt","amount":10000,"availableamount":10000,"used":0, "currency":"bat","amount":10000,"availableamount":10000,"used":0, "currency":"storj","amount":10000,"availableamount":10000,"used":0 ] Response for url /v1/wallets/pit "currency":"pit","amount":10000,"availableamount":9270,"used":730

12 2.6 Create new order Submit a new order. POST /v1/orders/new Symbol (required) String Pair ordered: (eg: CAV_ETH) price Float Price at which trade executed quantity Float Quantity ordered side String buy or sell type String Limit or Market Return value: one line of order. See Response Field on orders list. Data sample as response: "symbol":"pit_eth","timestamp": ,"id":476,"type":"limit","side":"sell","quantity ":200,"remainingQtt":200,"status":"open" 2.7 Cancel an order Cancel an order by its id. PUT /v1/orders/cancel/:symbol/:id Symbol (required) String Pair ordered: (eg: CAV_ETH) id Integer Numerical order Id Return value: one line of order. See Response Field on orders list. Data sample as respons: Response for url /v1/orders/cancel: "symbol":"pit_eth","timestamp": ,"id":476,"type":"limit","side":"sell","quantity ":200,"remainingQtt":200,"status":"canceled"

13 1 Code Samples const request = require('request'); const crypto = require('crypto'); const _ = require('lodash'); const moment = require('moment'); const apikey = 'your API key'; const apisecretkey = 'your API secret key'; const baseurl = ' // const baseurl = ' const launch = async (url, verb, body) => const completeurl = baseurl + url; const payload = new Buffer(JSON.stringify(body url)).tostring('base64'); const signature = crypto.createhmac('sha384', apisecretkey).update(payload).digest('hex'); const options = url: completeurl, headers: 'content-type': 'application/json', 'X-NEB-APIKEY': apikey, 'X-NEB-PAYLOAD': payload, 'X-NEB-SIGNATURE': signature if (verb === 'post') options.body = JSON.stringify(body); return await request.post( options, (error, response, body) => if (error) console.log(error); console.log(`response for url $url:`); console.log(' '); console.log(body); ); if (verb === 'put') options.body = JSON.stringify(body); return await request.put( options, (error, response, body) => if (error) console.log(error); console.log(`response for url $url:`); console.log(' '); console.log(body); ); if (verb === 'get') return await request.get( options, (error, response, body) => if (error) console.log(error); console.log(`response for url $url:`); console.log(' '); console.log(body); ); const testneworder = async ( quantity, price, side, type ) => const url = '/v1/orders/new'; const body = symbol: 'PIT_ETH', quantity, price, side, type

14 await launch(url, 'post', body); const testgetopenorders = async (symbol, params) => const url = `/v1/orders/$symbol$params ''`; const testgetclosedorders = async (symbol, params) => const url = `/v1/orders/closed/$symbol$params ''`; const testgetcanceledorders = async (symbol, params) => const url = `/v1/orders/canceled/$symbol$params ''`; const testgettrades = async (symbol, params) => const url = `/v1/trades/$symbol$params ''`; const testgetorderbook = async (symbol, params) => const url = `/v1/orderbook/$symbol$params ''`; const testgetorderbookl3 = async (symbol, params) => const url = `/v1/orderbookl3/$symbol$params ''`; const testcancelorder = async (symbol, id) => const url = `/v1/orders/cancel/$symbol/$id`; await launch(url, 'put'); const testgetwallets = async (hidezero) => let url = '/v1/wallets'; if (hidezero) url += `?hidezero=$hidezero`; const testgetwallet = async (code) => const url = `/v1/wallets/$code`; const testgettradehistory = async (symbol, params) => const url = `/v1/tradehistory/$symbol$params ''`; const completeurl = baseurl + url; const options = url: completeurl return await request.get( options, (error, response, body) => if (error) console.log(error); console.log(`response for url $url:`); console.log(' '); console.log(body); ); (async (test) => const start = moment().subtract(30, 'days').todate(); const end = moment().todate(); const limit = 10; let params = `?start=$encodeuricomponent(start)`; params += `&end=$encodeuricomponent(end)` + `&limit=$encodeuricomponent(limit)`; const paramsbook = `?limit=$encodeuricomponent(limit)`; const paramtrades = params + '&fromid=3'; switch (test) case 1: testgetopenorders('pit_eth', params);

15 case 2: testgetclosedorders('pit_eth', params); case 3: testgetcanceledorders('pit_eth', params); case 4: testgettrades('pit_eth', params); case 5: testgettradehistory('pit_eth', paramtrades); case 6: testgetorderbook('pit_eth', paramsbook); case 7: testgetorderbookl3('pit_eth', paramsbook); case 8: await _.delay(() => testneworder( quantity: 20, price: , side: 'sell', type: 'limit', 1000)); await _.delay(() => testneworder( quantity: 50, price: 0.052, side: 'sell', type: 'limit', 1000)); await _.delay(() => testneworder( quantity: 100, price: , side: 'buy', type: 'limit', 1000)); await _.delay(() => testneworder( quantity: 100, price: , side: 'buy', type: 'limit', 1000)); case 9: await testneworder( quantity: 100, price: 0.045, side: 'buy', type: 'market' ); await testneworder( quantity: 100, price: 0.044, side: 'buy', type: 'market' ); case 10: testcancelorder('pit_eth', 166); case 11: testgetwallets(); case 12: testgetwallets(true); case 13: testgetwallet('pit'); default: console.log('please provide arg between 1 and 10', test); )(13);

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

python-idex Documentation

python-idex Documentation python-idex Documentation Release 0.2.0 Sam McHardy Aug 08, 2018 Contents 1 Features 3 2 Quick Start 5 3 Synchronous Examples 7 4 Async Examples for Python 3.5+ 9 5 TODO 11 6 Donate 13 7 Other Exchanges

More information

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

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

More information

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

Package rgdax. January 7, 2019

Package rgdax. January 7, 2019 Type Package Package rgdax January 7, 2019 Title Wrapper for 'Coinbase Pro (GDAX)' Cryptocurrency Exchange Version 1.0.0 Maintainer Dheeraj Agarwal Allow access to both public

More information

Japannext PTS ITCH Market Data Specification for Equities

Japannext PTS ITCH Market Data Specification for Equities Japannext PTS ITCH Market Data Specification for Equities Version 1.5 Updated 26 October 2017 Table of Contents Introduction... 3 Overview... 3 Data Types... 3 Outbound Sequenced Messages... 3 Seconds

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

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

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

flask-jwt Documentation

flask-jwt Documentation flask-jwt Documentation Release 0.3.2 Dan Jacob Nov 16, 2017 Contents 1 Links 3 2 Installation 5 3 Quickstart 7 4 Configuration Options 9 5 API 11 6 Changelog 13 6.1 Flask-JWT Changelog..........................................

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

BTS Trading Station. Quick Reference Guide Cash Markets

BTS Trading Station. Quick Reference Guide Cash Markets BTS Trading Station Quick Reference Guide Cash Markets Contents Quick Reference Guide 1.0 Getting Started 4 1.1 Application Layout 4 1.2 User Login and Password Management 4 1.3 Default Set Up 5 1.4 Virtual

More information

Japannext PTS GLIMPSE Market Data Specification for Equities

Japannext PTS GLIMPSE Market Data Specification for Equities Japannext PTS GLIMPSE Market Data Specification for Equities Version 1.2 Updated 26 October 2017 Table of Contents Introduction... 3 Overview... 3 Data Types... 3 Service Usage... 3 Outbound Sequenced

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

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

Tenable.io Container Security REST API. Last Revised: June 08, 2017

Tenable.io Container Security REST API. Last Revised: June 08, 2017 Tenable.io Container Security REST API Last Revised: June 08, 2017 Tenable.io Container Security API Tenable.io Container Security includes a number of APIs for interacting with the platform: Reports API

More information

API Developer s Guide

API Developer s Guide API Developer s Guide Created By : Marco Kok (marco@socialsurvey.com) Updated on : 04/10/2018 Version : 2.4.3 1 Introduction The SocialSurvey API provides access to import transaction data to our system

More information

KGI HK SP Mobile User Manual

KGI HK SP Mobile User Manual KGI HK SP Mobile User Manual Version 1.1 May 2013 Contents 1 Login Process... 3 2 Home Menu... 5 3 Quotes and Orders... 6 3.1 Quote List... 6 3.2 Add product quote (with product code)... 7 3.3 Add product

More information

XDP Trades Client Specification NYSE Trades NYSE Arca Trades NYSE Amex Trades

XDP Trades Client Specification NYSE Trades NYSE Arca Trades NYSE Amex Trades XDP Trades NYSE Trades NYSE Arca Trades NYSE Amex Trades Version 1.0e September 29, 2011 2011 NYSE Euronext. All rights reserved. No part of this material may be copied, photocopied or duplicated in any

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

Package xlm. October 22, 2018

Package xlm. October 22, 2018 Type Package Title A 'Stellar' Client Version 0.1.1 Author Oliver Frost Package xlm October 22, 2018 Maintainer Oliver Frost An R wrapper for interacting with the Stellar network,

More information

OAuth at Interactive Brokers

OAuth at Interactive Brokers OAuth at Interactive Brokers November 9, 2017 1 Consumer Registration Consumers will need to provide the following in order to register as an authorized oauth consumer with Interactive Brokers. 1. A 2048-bit

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

XDP TRADES CLIENT SPECIFICATION

XDP TRADES CLIENT SPECIFICATION Document title XDP TRADES NYSE TRADES. NYSE ARCA TRADES, NYSE MKT TRADES Version Date 1.7 12 September 2013 2014 NYSE Euronext. All rights reserved. No part of this material may be copied, photocopied

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

ACCUZIP EDDM UI REST API CALLS. 100% Cloud Based EDDM List Creation. Abstract EDDM UI to select Carrier Route Boundaries throughout the United States

ACCUZIP EDDM UI REST API CALLS. 100% Cloud Based EDDM List Creation. Abstract EDDM UI to select Carrier Route Boundaries throughout the United States ACCUZIP EDDM UI REST API CALLS 100% Cloud Based EDDM List Creation Abstract EDDM UI to select Carrier Route Boundaries throughout the United States Steve Belmonte steve@accuzip.com AccuZIP EDDM Web 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

CSC Web Programming. Introduction to SQL

CSC Web Programming. Introduction to SQL CSC 242 - Web Programming Introduction to SQL SQL Statements Data Definition Language CREATE ALTER DROP Data Manipulation Language INSERT UPDATE DELETE Data Query Language SELECT SQL statements end with

More information

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

Gengo API v1 / v1.1 Documentation

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

More information

Amazon Instant Access Integration Guide. Subscriptions (SaaS)

Amazon Instant Access Integration Guide. Subscriptions (SaaS) Amazon Instant Access Integration Guide Subscriptions (SaaS) TABLE OF CONTENTS 1. INTRODUCTION... 3 2. SUBSCRIPTION PRODUCT OFFERINGS... 4 3. API OVERVIEW AND SPECIFICATIONS... 5 ACCOUNT LINKING ENDPOINT...

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

Checkout Service API User Guide

Checkout Service API User Guide MicroMacro Mobile Inc. Checkout Service API User Guide API Version 2.0 October 02, 2017 Version History Version UpdatedAt Note 1.0 February 19, 2016 The original Checkout Service API and documentation

More information

Japannext PTS OUCH Trading Specification for Equities

Japannext PTS OUCH Trading Specification for Equities Japannext PTS OUCH Trading Specification for Equities Version 1.8 Updated 8 November 2017 Table of Contents Introduction...3 Overview...3 Fault Redundancy...3 Service Configuration...3 Data Types...3 Inbound

More information

Making a POST Request Using Informatica Cloud REST API Connector

Making a POST Request Using Informatica Cloud REST API Connector Making a POST Request Using Informatica Cloud REST API Connector Copyright Informatica LLC 2016, 2017. Informatica, the Informatica logo, and Informatica Cloud are trademarks or registered trademarks of

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

Release Notes. Concur s Platform. Release Notes... 1

Release Notes. Concur s Platform. Release Notes... 1 Release Notes Concur s Platform Month Audience Contents Release Notes... 1 General Updates... 1 Developer Sandbox Registration Now Includes Default Partner Application... 1 Coming Soon- Open Booking Changed

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

IPConfigure Embedded LPR API

IPConfigure Embedded LPR API IPConfigure Embedded LPR API Version 1.3.6 February 23, 2016 1 Camera Configuration Parameters IPConfigure Embedded LPR uses several user-adjustable configuration parameters which are exposed by Axis Communication

More information

The Streetscape User Guide Dynamic Watch List

The Streetscape User Guide Dynamic Watch List Overview The Streetscape User Guide 1.756501.100 The enables you to track and monitor securities by grouping them into lists or portfolios based on one or more common characteristics. You can create an

More information

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

XDP TRADES FEED CLIENT SPECIFICATION

XDP TRADES FEED CLIENT SPECIFICATION XDP TRADES FEED NYSE TRADES, NYSE MKT TRADES Version Date 2.3f 29 January 2015 2015 NYSE. All rights reserved. No part of this material may be copied, photocopied or duplicated in any form by any means

More information

Veracity LRS Usage Documentation

Veracity LRS Usage Documentation https://lrs.veracity.it Veracity LRS Usage Documentation LRS Version Beta 1 (Hosted) Document Version 1.0 Table of Contents 1. Create and Configure LRS 3 1.1. Create an LRS Instance 3 1.2. Create Access

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

RIT REST API Tutorial

RIT REST API Tutorial RIT User Guide Build 1.00 RIT REST API Tutorial Table of Contents Introduction... 2 Python/Environment Setup... 3 Rotman Interactive Trader Install... 3 Text Editor... 3 Python Distribution... 3 Verifying

More information

Partner Web Services. GetMyPrice Service Manual

Partner Web Services. GetMyPrice Service Manual Partner Web Services GetMyPrice Service Manual Contents 1 Introduction... 5 1.1 Overview... 5 1.2 Supporting Resources... 5 2 Service Overview... 5 2.1 Benefits of GetMyPrice Service... 6 3 Service Endpoints...

More information

Data Web Service - Client Guide

Data Web Service - Client Guide Data Web Service - Client Guide Introduction The Redcat Data Web Service is a standard, secure way for approved Redcat clients to retrieve data ir SmartReports database. Update access is also available

More information

SPECIFICATION BIVA X-STREAM EXTERNAL OUCH SPECIFICATION

SPECIFICATION BIVA X-STREAM EXTERNAL OUCH SPECIFICATION SPECIFICATION BIVA X-STREAM EXTERNAL OUCH SPECIFICATION Version 1.04 Date 19 October 2016 File BIVA X-Stream External OUCH v1.04 Copyright 2016 Central de Corretajes (CENCOR), S.A. de C.V. All Rights Reserved.

More information

CRM Service Wrapper User Guide

CRM Service Wrapper User Guide Summary This document details the usage of the CRM Service Wrapper by xrm. The service wrapper allows you to communicate with a Microsoft Dynamics CRM application (called CRM for convenience in this document)

More information

Pay with Amazon Express Integration Guide

Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Copyright 2014-2015 Amazon.com, Inc. or its affiliates. AMAZON, AMAZON PAYMENTS, and AMAZON.COM are registered trademarks

More information

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide Sourcing Supplier Maintenance and Company Administration Buyer User Guide Version 6.1 Ion Wave Technologies, Inc. 2002-2008 Table of Contents Table of Contents...2 Welcome to Supplier Maintenance and Company

More information

Agenda. JWT Node Libraries. Encoding & Decoding the Tokens. The Authenticate Route. Securing the API with a JWT Strategy. Testing the Secured API

Agenda. JWT Node Libraries. Encoding & Decoding the Tokens. The Authenticate Route. Securing the API with a JWT Strategy. Testing the Secured API Secure Donation API Agenda JWT Node Libraries Encoding & Decoding the Tokens The Authenticate Route Securing the API with a JWT Strategy Testing the Secured API hapi-auth-jwt2 jwt.sign(payload, secretorprivatekey,

More information

THE VARIABLE LIST Sort the Variable List Create New Variables Copy Variables Define Value Labels... 4

THE VARIABLE LIST Sort the Variable List Create New Variables Copy Variables Define Value Labels... 4 The Variable List Contents THE VARIABLE LIST... 1 Sort the Variable List... 2 Create New Variables... 3 Copy Variables... 3 Define Value Labels... 4 Define Missing Values... 4 Search and Filter Variables...

More information

SPARROW Gateway. Developer API. Version (Build 7373)

SPARROW Gateway. Developer API. Version (Build 7373) SPARROW Gateway Developer API Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2016 02 26 2.0 Initial document created Alexandra Blinova 2 Table of Contents

More information

Project and Portfolio Management Center

Project and Portfolio Management Center Project and Portfolio Management Center Software Version: 9.42 Application Portfolio Management Administrator Guide Go to HELP CENTER ONLINE http://admhelp.microfocus.com/ppm/ Document Release Date: July

More information

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1).

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1). Quriiri HTTP MT API This document describes the Quriiri HTTP MT API version 1 (v1). Sending messages Request types Security Request parameters Request examples JSON POST GET Response JSON response example

More information

Libelium Cloud Hive. Technical Guide

Libelium Cloud Hive. Technical Guide Libelium Cloud Hive Technical Guide Index Document version: v7.0-12/2018 Libelium Comunicaciones Distribuidas S.L. INDEX 1. General and information... 4 1.1. Introduction...4 1.1.1. Overview...4 1.2. Data

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

Contacts REST: Web Service Consumer Guide

Contacts REST: Web Service Consumer Guide Contacts REST: Web Service Consumer Guide Content Content... Error! Marcador no definido. Consumer guide:... 3 A result code: RESPONSE... 3 Payload:... 3 Web service Contacts REST R4:... 5 Examples:...

More information

IBM Security Access Manager Version June Development topics IBM

IBM Security Access Manager Version June Development topics IBM IBM Security Access Manager Version 9.0.5 June 2018 Development topics IBM IBM Security Access Manager Version 9.0.5 June 2018 Development topics IBM ii IBM Security Access Manager Version 9.0.5 June

More information

XDP TRADES FEED CLIENT SPECIFICATION

XDP TRADES FEED CLIENT SPECIFICATION XDP TRADES FEED NYSE TRADES, NYSE MKT TRADES Version Date 2.3e 21 November 2014 2014 NYSE. All rights reserved. No part of this material may be copied, photocopied or duplicated in any form by any means

More information

Grids (tables) is one type of content available in the web Front end s tabs.

Grids (tables) is one type of content available in the web Front end s tabs. Grids Overview Grids (tables) is one type of content available in the web Front end s tabs. Grids provide the following functionality: Data output and automatically updating the data Providing features

More information

DB - Week 3 Lab1-2 Introduction to Databases. Dina A. Said

DB - Week 3 Lab1-2 Introduction to Databases. Dina A. Said DB - Week 3 Lab1-2 Introduction to Databases Dina A. Said dasaid@ucalgary.ca Relationships Create a relationship as follows: One-to-many s.t. field author_id in titles table is a foreign key from field

More information

Purchase Order Processor

Purchase Order Processor Purchase Order Processor Last Update: 6/26/13 Digital Gateway, Inc. All rights reserved ii Table of Contents PO PROCESSOR... 1 SETUP... 5 CONNECTION SETTINGS... 5 Overview... 5 PO Processor Settings Manager...

More information

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0 Ninox API Ninox Version 2.3.4 Document version 1.0.0 Ninox 2.3.4 API 1.0.0 Page 1 of 15 Table of Contents Introduction 3 Obtain an API Key 3 Zapier 4 Ninox REST API 5 Authentication 5 Content-Type 5 Get

More information

Amazon Instant Access Integration Guide. One-Time Purchases

Amazon Instant Access Integration Guide. One-Time Purchases Amazon Instant Access Integration Guide One-Time Purchases TABLE OF CONTENTS 1. INTRODUCTION... 3 2. API OVERVIEW AND SPECIFICATIONS... 4 ACCOUNT LINKING ENDPOINT... 5 ACCOUNT REGISTRATION PAGE... 6 FULFILLMENT

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

Oracle Eloqua Application API

Oracle Eloqua Application API http://docs.oracle.com Oracle Eloqua Application API Developer Guide 2018 Oracle Corporation. All rights reserved 02-Feb-2018 Contents 1 Oracle Eloqua Application API 10 1.1 Application API operations

More information

Chapter 1. Configuring VPGO

Chapter 1. Configuring VPGO Chapter 1. Configuring VPGO The VPGO module is configured in the VISUAL PLANNING client. You can define as many VPGO templates as you need based on the three existing template types: Diary template Events

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

Backend Development. SWE 432, Fall Web Application Development

Backend Development. SWE 432, Fall Web Application Development Backend Development SWE 432, Fall 2018 Web Application Development Review: Async Programming Example 1 second each Go get a candy bar Go get a candy bar Go get a candy bar Go get a candy bar Go get a candy

More information

RESTful API Specification

RESTful API Specification RESTful API Specification Contents Creating Group Conference Getting Group Conference Editing Group Conference Deleting Group Conference Getting List of Group Conference Getting User Address Book Adding

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

Sigwo Technologies Waves wallet manual

Sigwo Technologies Waves wallet manual Sigwo Technologies Waves wallet manual Version 1.0 19 October 2017 1 Getting started with the Waves wallet 1) Launch the customized Waves Lite Client for Darcrus and Mercury We have created a Sigwo Technologies

More information

GMA024F0. GridDB Web API Guide. Toshiba Digital Solutions Corporation 2017 All Rights Reserved.

GMA024F0. GridDB Web API Guide. Toshiba Digital Solutions Corporation 2017 All Rights Reserved. GMA024F0 GridDB Web API Guide Toshiba Digital Solutions Corporation 2017 All Rights Reserved. Introduction This manual describes GridDB WebAPI s function, configuration method, and notes. Please read this

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE Viewing and Searching for Strategic Sourcing Events To access the Strategic Sourcing navigation, please follow the instructions directly below: Sign into the below URL with the credentials

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

Guide to a Successful Wanchain Token Contribution

Guide to a Successful Wanchain Token Contribution Guide to a Successful Wanchain Token Contribution 1. Check if your address is whitelisted Make sure you use the wallet address you provided during the whitelist process. The wallet must be one where you

More information

Issue No. Date Description of Changes Initial issue Added basic authentication

Issue No. Date Description of Changes Initial issue Added basic authentication Department: Subject: IT API Documentation Revision History: Issue No. Date Description of Changes 1.0 04.18.17 Initial issue 1.1 05.11.17 Added basic authentication Related Documents: Page 1 of 28 Classification

More information

IP2PGO APP USER GUIDE Version 2

IP2PGO APP USER GUIDE Version 2 IP2PGO APP USER GUIDE Version 2 9 November 2018 Sections A. Registration B. Downloading the App C. Getting started on the App D. Creating your Wallet E. Making a Deposit F. Creating a Sell Offer G. When

More information

RHB Futures QST. - Desktop Application User Guideline

RHB Futures QST. - Desktop Application User Guideline RHB Futures QST - Desktop Application User Guideline RHB Futures QST Desktop Application Features : Multiple tabbed workspaces allow one or more internal frames. Frames can be pulled into external windows

More information

Pass Distribution APIs User Guide

Pass Distribution APIs User Guide MicroMacro Mobile Inc Pass Distribution APIs User Guide V 2.0.3 2017-08-03 Version History Version UpdatedAt te v 2.0.1 2015-06-16 v 2.0.2 2016-04-14 v 2.0.3 2017-08-03 Add support for Create a pass API,

More information

Brain Corporate Bulk SMS

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

More information

Eastern Bank TreasuryConnect Balance Reporting User Manual

Eastern Bank TreasuryConnect Balance Reporting User Manual Eastern Bank TreasuryConnect Balance Reporting User Manual This user manual provides instructions for setting up or editing a user and accessing services within the three Balance related groups. Within

More information

FLP Merchant Website. User Guide. Version 0.14

FLP Merchant Website. User Guide. Version 0.14 FLP Merchant Website User Guide Version 0.14 Revision History Responsible Revision Date Version Vitalii Vysotskyi Created the initial version of the user guide 2017-11-28 0.1 Vitalii Vysotskyi Small updates

More information

TOKEN SWAP FAQ. For action before July 23, 2018.

TOKEN SWAP FAQ. For action before July 23, 2018. TOKEN SWAP FAQ For action before July 23, 2018. Thank you very much for all your questions so far. It really helps to improve the explanation of the process. If you are not sure about any step from the

More information

Futures Q U I C K S TA R T G U I D E

Futures Q U I C K S TA R T G U I D E + Futures Q U I C K S TA R T G U I D E TABLE OF CONTENTS LOG IN 8 POSITIONS VIEW 5 TIME & SALES TAB 3 MARKETS VIEW 9 ACCOUNTS VIEW 6 RISK TAB 4 SELECT A CHAIN 0 FAVORITES 7 LOGGING OUT 5 ORDER TICKET TAB

More information

python-hologram-api Documentation

python-hologram-api Documentation python-hologram-api Documentation Release 0.1.6 Victor Yap Oct 27, 2017 Contents 1 python-hologram-api 3 1.1 Installation................................................ 3 1.2 Documentation..............................................

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

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

Electronic Sales Platform User s Manual

Electronic Sales Platform User s Manual Electronic Sales Platform User s Manual Version 1.1 2018 St. Petersburg 2 CONTENTS Preface... 3 1 Introduction... 4 1.1 Workstation Requirements and Settings... 4 1.2 Starting application... 5 2 Summary

More information

IBM Security Access Manager Version 9.0 October Development topics IBM

IBM Security Access Manager Version 9.0 October Development topics IBM IBM Security Access Manager Version 9.0 October 2015 Development topics IBM IBM Security Access Manager Version 9.0 October 2015 Development topics IBM ii IBM Security Access Manager Version 9.0 October

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

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

More information

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

Oracle Cloud Using the Eventbrite Adapter. Release 17.3

Oracle Cloud Using the Eventbrite Adapter. Release 17.3 Oracle Cloud Using the Eventbrite Adapter Release 17.3 E69235-08 September 2017 Oracle Cloud Using the Eventbrite Adapter, Release 17.3 E69235-08 Copyright 2016, 2017, Oracle and/or its affiliates. All

More information

XDP TRADES FEED CLIENT SPECIFICATION

XDP TRADES FEED CLIENT SPECIFICATION XDP TRADES FEED CLIENT SPECIFICATION NYSE TRADES FEED NYSE AMERICAN TRADES FEED NYSE NATIONAL TRADES FEED NYSE ARCA TRADES FEED Version Date 2.5 January 10, 2018 Copyright 2019 Intercontinental Exchange,

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

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

More information

A quick guide to the EPD API

A quick guide to the EPD API A quick guide to the EPD API Tradesolution 2018 Document version 1.5 Tradesolution EPD A quick guide to EPD API 21 th of February 2018 Copyright Tradesolution AS EPD API Side 2 av 28 Table of contents

More information

Package urlshortener

Package urlshortener Type Package Package urlshortener December 5, 2016 Title R Wrapper for the 'Bit.ly', 'Goo.gl' and 'Is.gd' URL Shortening Services Allows using different URL shortening services, which also provide expanding

More information