Exchange Rates REST API (Version 1.0)

Size: px
Start display at page:

Download "Exchange Rates REST API (Version 1.0)"

Transcription

1 Exchange Rates REST API (Version 1.0) The new basic domain for A2A services is: For the sake of brevity, the basic domain is omitted from the description of the URLs. So, for example, instead of writing GET we will simply write GET /currencies Or instead of writing GET we will simply write GET /latestrates?lang= The repeatable input parameters will be indicated in the URL in square brackets, for exeample: GET /dailyrates?referencedate=&basecurrencyisocode=]&currencyisocode=&lang= Latest Rates It provides the exchange rates, against the euro and the US dollar, on the latest day for which there are quotations available for all the currencies quoted in the database. GET /latestrates?lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Description lang No The language in which you want the data: "it" or "en" may be used (case insensitive). If the parameter is not specified or is incorrectly spelled, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found 1

2 Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "timezonereference": "Dates refer to the Central European Time Zone", "notice": "Foreign currency amount for 1 euro ", "latestrates": "country": "ALBANIA", "currency": "Lek", "isocode": "ALL", "uiccode": "047", "eurrate": "0.0089", "usdrate": "0.0089", "usdexchangeconvention": "Foreign currency amount for 1 dollar", "usdexchangeconventioncode": "C", "referencedate": " ", "country": "ALGERIA", "currency": "Algerian Dinar", "isocode": "DZD", "uiccode": "106", "eurrate": "1.0000", "usdrate": "1.0000", "usdexchangeconvention": "Foreign currency amount for 1 dollar", "usdexchangeconventioncode": "C", "referencedate": " " ] Content Type: text/csv Filename: latest_rates_yyyymmdd.csv Country,Currency,ISO Code,UIC Code,Euro,US dollar,rate convention against Dollar,Rate convention against Euro,Reference date (CET) AFGHANISTAN (Islamic State of),afghani,afn,115, , ,foreign currency amount for 1 Dollar,Foreign currency amount for 1 Euro, ALBANIA,Lek,ALL,047,133.59,114.72,Foreign currency amount for 1 Dollar,Foreign currency amount for 1 Euro, ALGERIA,Algerian Dinar,DZD,106, , ,Foreign currency amount for 1 Dollar,Foreign currency amount for 1 Euro, ANGOLA,Adjusted Kwanza,AOA,087, , ,Foreign currency amount for 1 Dollar,Foreign currency amount for 1 Euro, ANTIGUA AND BARBUDA,East Caribbean Dollar,XCD,137,3.1442,2.70,Foreign currency amount for 1 Dollar,Foreign currency amount for 1 Euro,

3 Daily Exchange Rates It provides daily exchange rates for a specific date, against the euro, the US dollar or the Italian lira, for one or more requested currencies, which are valid and for which the rates for the selected date are available. If no currency is specified, the service will return all the available currencies. If there are no quotations for the date and currencies selected, the service will return an empty list with an information message. GET /dailyrates?referencedate=&basecurrencyisocode=]&currencyisocode=&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description referencedate Yes No Quotation date. It is represented in relation to the Central European Time Zone in the format "yyyy-mm-dd". service will return a message with the required format. basecurrencyisocode No Yes The ISO code for the currency for which you want the exchange rate (case insensitive). In the case of multiple currencies, the parameter must be repeated. If the parameter is not specified, all the currencies for which the rate is available on the requested date will be returned. ISO codes that do not exist will be discarded. If none of the ISO codes inserted exist, an empty list will be shown. For ISO codes specified incorrectly, the service will return an error message. currencyisocode Yes No The currency ISO code (case insensitive) against which you want the rates. It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is incorrect, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found 3

4 Example of a response: Content Type: application/json "resultsinfo": "totalrecords": 1, "timezonereference": "Dates refer to the Central European Time Zone", "rates": "country": "UNITED ARAB EMIRATES", "currency": "U.A.E. Dirham", "isocode": "AED", "uiccode": "187", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "exchangeconventioncode": "I", "referencedate": " " ] Content Type: text/csv Filename: daily_rates_yyyymm.csv Country,Currency,ISO Code,UIC Code,Rate,Rate convention,reference date (CET) AFGHANISTAN (Islamic State of),afghani,afn,115, ,foreign currency amount for 1 Euro, ALBANIA,Lek,ALL,047, ,Foreign currency amount for 1 Euro, ALGERIA,Algerian Dinar,DZD,106, ,Foreign currency amount for 1 Euro, ANGOLA,Adjusted Kwanza,AOA,087, ,Foreign currency amount for 1 Euro, ANTIGUA AND BARBUDA,East Caribbean Dollar,XCD,137, ,Foreign currency amount for 1 Euro,

5 Average Monthly Exchange Rates It provides average monthly exchange rates for a specific month/year, against the euro, the US dollar or the Italian lira, for one or more valid currencies, and for which the rates are available. If there are no quotations for the month and currencies selected, the service will return an empty list. GET /monthlyaveragerates?month=&year=&basecurrencyisocode=]&currencyisocode =&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description month Yes No Quotation month. Must be an integer between 1 and 12. If the parameter is not specified or the value is incorrect, the service will return an http 400 error and a message with the required format, i.e. an integer between 1 and 12. year Yes No Quotation year. Must be a 4-digit integer in the YYYY format. If there are no rates for the month/year pair, the service will return an empty list. basecurrencyisocode No Yes The currency ISO code for which you want the exchange rate (case insensitive). In the case of multiple currencies, the parameter must be repeated. If the parameter is not specified, all the currencies for which the rate is available on the requested date will be returned. ISO codes that do not exist will be discarded. If none of the ISO insert codes exist, an empty list will be returned. For ISO codes specified incorrectly, the service will return an error message. currencyisocode Yes No The ISO code of the currency against which you want the rates. It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is not valid, the results will be provided in the default language. 5

6 http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "rates": "country": "ALBANIA", "currency": "Lek", "isocode": "ALL", "uiccode": "047", "avgrate": "140", "exchangeconvention": "Foreign currency amount for 1 Euro ", "exchangeconventioncode": "I", "year": 2016, "month": 9, "country": "ALGERIA", "currency": "Algerian Dinar", "isocode": "DZD", "uiccode": "106", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "exchangeconventioncode": "I", "year": 2016, "month": 9 ] Content Type: text/csv Filename: monthly_average_rates_yyyymm.csv Country,Currency,ISO Code,UIC Code,Average Rate,Rate convention,year,month AFGHANISTAN (Islamic State of),afghani,afn,115, ,foreign currency amount for 1 Euro,2016,8 ALBANIA,Lek,ALL,047, ,Foreign currency amount for 1 Euro,2016,8 ALGERIA,Algerian Dinar,DZD,106, ,Foreign currency amount for 1 Euro,2016,8 ANGOLA,Adjusted Kwanza,AOA,087, ,Foreign currency amount for 1 Euro,2016,8 ANTIGUA AND BARBUDA,East Caribbean Dollar,XCD,137, ,Foreign currency amount for 1 Euro,2016,8 6

7 Annual Average Exchange Rates It provides the annual average rates, against the euro, the US dollar or the Italian lira, for one or more requested currencies, which are valid and for which the rates for the selected month are available. If no currency is specified, the service will return all the available currency rates. If there are no quotations for the year and currencies selected, the service will return an empty list. GET /annualaveragerates?year=&basecurrencyisocode=]&currencyisocode=&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description year Yes No Quotation year. Must be a 4-digit integer in the YYYY format. If there are no rates available for the year, the service will return an empty list. basecurrencyisocode No Yes The ISO code for the currency for which you want the exchange rate (case insensitive). In the case of multiple currencies, the parameter must be repeated. If the parameter is not specified, all the currencies for which the rate is available on the requested date will be returned. ISO codes that do not exist will be discarded. If none of the ISO insert codes exist, an empty list will be returned. For ISO codes specified incorrectly, the service will return an error message. currencyisocode Yes No The ISO code of the currency against which you want the rates (case insensitive). It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is not valid, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found 7

8 Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "rates": "country": "ALBANIA", "currency": "Lek", "isocode": "ALL", "uiccode": "047", "avgrate": "140", "exchangeconvention": "Foreign currency amount for 1 Euro ", "exchangeconventioncode": "I", "year": 2016, "country": "ALGERIA", "currency": "Algerian Dinar", "isocode": "DZD", "uiccode": "106", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "exchangeconventioncode": "I", "year": 2016 ] Content Type: text/csv Filename: annual_average_rates_yyyy.csv Country,Currency,ISO Code,UIC Code,Rate,Rate convention,year AFGHANISTAN (Islamic State of),afghani,afn,115,75.074,foreign currency amount for 1 Euro,2016 ALBANIA,Lek,ALL,047, ,Foreign currency amount for 1 Euro,2016 ALGERIA,Algerian Dinar,DZD,106, ,Foreign currency amount for 1 Euro,2016 ANGOLA,Adjusted Kwanza,AOA,087, ,Foreign currency amount for 1 Euro,2016 ANTIGUA AND BARBUDA,East Caribbean Dollar,XCD,137, ,Foreign currency amount for 1 Euro,2016 8

9 Daily Exchange rates - Time Series It provides daily exchange rates for a currency with reference to a specific date range. The foreign currency may be the euro, the US dollar or the Italian lira. If no rate is available for the range provided, the service will return an empty list. The end date may not be earlier than the start date, otherwise the service will return an error message. Queries can be made about historical data from 1918 onwards. GET /dailytimeseries?startdate=&enddate=&basecurrencyisocode=&currencyisocode =&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description startdate Yes No Quotation start date. It is represented in relation to the Central European Time Zone in the format "yyyy-mm-dd". enddate Yes No Quotation end date. It is represented in relation to the Central European Time Zone in the format "yyyy-mm-dd". basecurrencyisocode Yes No The ISO code for the currency for which you want the exchange rate (case insensitive). If the ISO insert code does not exist, an empty list will be returned. If the parameter is specified incorrectly, the service will return an error message. currencyisocode Yes No The ISO code (case insensitive) for the currency against which you want the rates. It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value specified is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is incorrect, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found 9

10 Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "timezonereference": "Dates refer to the Central European Time Zone", "currency": "Lek", "isocode": "ALL", "uiccode": "047", "exchangeconventioncode": "I", "rates": "referencedate": " ", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "referencedate": " ", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro " ] Content Type: text/csv Filename: <basecurrencyisocode>_daily_time_series.csv Currency,ISO Code,UIC Code,Rate,Rate convention,reference date (CET) Lek,ALL,047, ,Foreign currency amount for 1 Dollar, Lek,ALL,047, ,Foreign currency amount for 1 Dollar, Lek,ALL,047, ,Foreign currency amount for 1 Dollar, Lek,ALL,047, ,Foreign currency amount for 1 Dollar,

11 Monthly Exchange rates - Time Series It provides monthly exchange rates for a currency for a specific month range. The foreign currency may be the euro, the US dollar or the Italian lira. If no rate is available for the range provided, the service will return an empty list. The start month/year pair must not be after the end month/year pair, otherwise the service will return an error message. Queries can be made about historical data from 1918 onwards. GET /monthlytimeseries?startmonth=&startyear=&endmonth=&endyear=&basecurrencyisocode= &currencyisocode=&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description startmonth Yes No Quotation start month. Must be an integer between 1 and 12. startyear Yes No Quotation start year. Must be a 4-digit integer in the YYYY format. endmonth Yes No Quotation end month.. Must be an integer between 1 and 12. endyear Yes No Quotation end year. Must be a 4-digit integer in the YYYY format. If the endmonth/endyear comes before the startmonth/startyear the service will return an error message. basecurrencyisocode Yes No The ISO code for the currency for which you want the exchange rate (case insensitive). If the ISO insert code does not exist, an empty list will be returned. If the parameter is specified incorrectly, the service will return an error message. currencyisocode Yes No The ISO code of the currency against which you want the rates. It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is not valid, the results will be provided in the default language. 11

12 http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 3, "currency": "Lek", "isocode": "ALL", "uiccode": "047", "exchangeconventioncode": "I", "rates": "referencedate": " ", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "referencedate": " ", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "referencedate": " ", "avgrate": "138.21", "exchangeconvention": "Foreign currency amount for 1 Euro " ] Content Type: text/csv Filename: <basecurrencyisocode>_monthly_time_series.csv Currency,ISO Code,UIC Code,Rate,Rate convention,reference date (CET) Lek,ALL,047, ,Foreign currency amount for 1 Dollar, Lek,ALL,047, ,Foreign currency amount for 1 Dollar, Lek,ALL,047, ,Foreign currency amount for 1 Dollar,

13 Annual Average Exchange Rates - Time Series It provides annual average exchange rates for a currency and for a specific year range. The foreign currency may be the euro, the US dollar or the Italian lira. If no rate is available for the range provided, the service will return an empty list. The start year must not be after the end year, otherwise the service will return an error message. It is possible to make queries about historical data from 1918 onwards. GET /annualtimeseries?startyear=&endyear=&basecurrencyisocode=&currencyisocode =&lang= Media types The result is available in the following formats: json, pdf, csv, Excel, depending on the HTTP Accept header parameter: Accept: application/json Accept: application/pdf Accept: text/csv Accept: application/vnd.ms-excel Input Parameters Name Required Repeatable Description startyear Yes No Quotation start year. Must be a 4-digit integer in the YYYY format. endyear Yes No Quotation end year. Must be a 4-digit integer in the YYYY format. If the endyear comes before the startyear, the service will return an error message. basecurrencyisocode Yes No The ISO code for the currency for which you want the exchange rate (case insensitive). If the ISO insert code does not exist, an empty list will be returned. If the parameter is specified incorrectly, the service will return an error message. currencyisocode Yes No The ISO code for the currency against which you want the rates(case insensitive). It can be "EUR", "USD" or "ITL". If the parameter is not specified, or the value is not valid, the service will return an error message. lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is not valid, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found 13

14 Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "currency": "Lek", "isocode": "ALL", "uiccode": "047", "exchangeconventioncode": "I", "rates": "referencedate": "2015", "avgrate": " ", "exchangeconvention": "Foreign currency amount for 1 Euro ", "referencedate": "2016", "avgrate": "138.21", "exchangeconvention": "Foreign currency amount for 1 Euro " ] Content Type: text/csv Filename: <basecurrencyisocode>_annual_time_series.csv Currency, ISO Code, UIC Code,Rate,Rate convention,reference date (CET) Lek,ALL,047, ,Foreign currency amount for 1 Dollar,2015 Lek,ALL,047, ,Foreign currency amount for 1 Dollar,

15 List of Currencies Returns a list of all currencies, including expired currencies. GET /currencies?lang= Media types The result is available in json format with the HTTP Accept header parameter: Accept: application/json Input Parameters Name Required Repeatable Description lang No No The language in which you want the data: it can be "it" or "en" (case insensitive). If the parameter is not specified, or the value is not valid, the results will be provided in the default language. http response codes: 200 OK 500 Internal Server Error 503 Service Unavailable 400 Bad Request 408 Request Timeout 404 Not Found Examples of responses: Content Type: application/json "resultsinfo": "totalrecords": 2, "timezonereference": "Dates refer to the Central European Time Zone", "currencies": "countries": "currencyiso": "ADP", "country": "ANDORRA", "countryiso": "AD", "validitystartdate": " ", "validityenddate": " " ], "isocode": "ADP", "name": "Andorra Peseta", "graph": false, "countries": 15

16 "currencyiso": "AED", "country": "UNITED ARAB EMIRATES", "countryiso": null, "validitystartdate": " ", "validityenddate": null ], "isocode": "AED", "name": "U.A.E. Dirham", "graph": false ] 16

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

UReport USSD application Documentation

UReport USSD application Documentation UReport USSD application Documentation Release 0.1.0 Praekelt Foundation June 07, 2014 Contents 1 UReport JSON HTTP API 3 1.1 Contents................................................. 3 1.2 Response format

More information

SIDEKICK PC DATABASE UPDATE ISSUES

SIDEKICK PC DATABASE UPDATE ISSUES SIDEKICK PC DATABASE UPDATE ISSUES 19 TH MAY 2009 2009 Electrolux Italia S.p.A., All rights reserved TABLE OF CONTENTS 1. CANNOT CONNECT TO THE WEB SERVICE... 3 2. REMOTE WEB SERVICE CONNECTION ERROR:

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

Creating Simple Report from Excel

Creating Simple Report from Excel Creating Simple Report from Excel 1.1 Connect to Excel workbook 1. Select Get Data Excel in the Home ribbon tab, 2. In the Open File dialog box, select the 2015 Sales.xlsx file. Then in the Navigator pane,

More information

Package riingo. April 16, 2018

Package riingo. April 16, 2018 Type Package Package riingo April 16, 2018 Title An R Interface to the 'Tiingo' Stock Price API Version 0.1.0 Maintainer Davis Vaughan Functionality to download stock prices,

More information

Public Appointment API. Calendar A

Public Appointment API. Calendar A Public Appointment API Calendar 205.01A Copyright notice The information in this document is subject to change without prior notice and does not represent a commitment on the part of Q-MATIC AB. All efforts

More information

eoddata-client Documentation

eoddata-client Documentation eoddata-client Documentation Release 0.3.3 Aleksey Sep 27, 2017 Table of Contents: 1 Usage 1 2 Client API 3 2.1 Http client................................................ 3 2.2 Errors...................................................

More information

EMC Unisphere for VMAX

EMC Unisphere for VMAX EMC Unisphere for VMAX Version 8.2.0 REST API Concepts and Programmer's Guide Copyright 2014-2015 EMC Corporation. All rights reserved. Published in the USA. Published March 31, 2016 EMC believes the information

More information

Cisco Prime Performance Manager 1.3 REST API Guide

Cisco Prime Performance Manager 1.3 REST API Guide Cisco Prime Performance Manager 1.3 REST API Guide September 17, 2012 Copyright 2012 Cisco Systems - 1 - Table of Contents 1 Purpose... 3 2 Assumptions... 4 2.1 Audience... 4 2.2 HTTP Version... 4 2.3

More information

GBB (WA) REPORT APPLICATION PROGRAMMING INTERFACE (API) VERSION 1.5

GBB (WA) REPORT APPLICATION PROGRAMMING INTERFACE (API) VERSION 1.5 GBB (WA) REPORT APPLICATION PROGRAMMING INTERFACE (API) VERSION 1.5 Published: November 2015 IMPORTANT NOTICE Purpose AEMO has prepared this document to provide information about the GBB (WA) report application

More information

RoomCloud Booking Engine Integration manual Version /06/2017

RoomCloud Booking Engine Integration manual Version /06/2017 RoomCloud Booking Engine Integration manual Version 3.1.0 07/06/2017 Page 1/16 REVISION HISTORY Version Description of the revision 1.0.0 First draft 2.0.0 Parameter n and p added 2.1.0 Parameter r added

More information

PayTabs ios SDK Integration Guide

PayTabs ios SDK Integration Guide PayTabs ios SDK Integration Guide INTEGRATION GUIDE VERSION 2.0 Table of Contents 1 Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation

More information

FCA Financial Instruments Reference Data System Instructions on access and download of full and delta reference files.

FCA Financial Instruments Reference Data System Instructions on access and download of full and delta reference files. FCA Financial Instruments Reference Data System Instructions on access and download of full and delta reference files February 2019 1 Introduction The FCA Financial Instruments Reference Data System (FCA

More information

1. Overview Account Configuration Details... 3

1. Overview Account Configuration Details... 3 WhatsApp Enterprise API - Technical Guide V4.4 July 2018 Index 1. Overview... 3 2. Account Configuration Details... 3 2.1 Provisioning of a Demo API... 3 2.2 Activation of Production API... 3 2.3 Setting

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

REST SERVICE. Web Services API Version 1.5

REST SERVICE. Web Services API Version 1.5 REST SERVICE Web Services API Version 1.5 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or in part, except

More information

Specific API Usage Limitations... 7 Daily Limitation... 7 Concurrency Limitation... 7 Bulk Use API Description... 8 Site Data API...

Specific API Usage Limitations... 7 Daily Limitation... 7 Concurrency Limitation... 7 Bulk Use API Description... 8 Site Data API... Last update: August 2016 SolarEdge API SolarEdge API Contents SolarEdge API... 2 Contents... 2 General... 4 Purpose and scope... 4 Acronyms and abbreviations... 4 Introduction... 4 Technical Information...

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

Acled API. User Guide. Richard Holmes February 2018 ACLED API - VERSION 2.0 COPYRIGHT

Acled API. User Guide. Richard Holmes   February 2018 ACLED API - VERSION 2.0 COPYRIGHT Acled API User Guide Richard Holmes https://ampersandstudio.uk/ February 2018 ACLED API - VERSION 2.0 COPYRIGHT 2018 1 Contents Acled API Introduction 4 API Access Detail 4 Sample API Calls and Responses

More information

PayTabs Android SDK Integration Guide

PayTabs Android SDK Integration Guide PayTabs Android SDK Integration Guide INTEGRATION GUIDE VERSION 2.5 Table of Contents 1 Overview...4 1.1 Test Merchant Account v/s Live Merchant Account...4 1.2 Target Audience...4 1.3 Assistance...4 1.4

More information

Generating Reports with BudgetPak

Generating Reports with BudgetPak Generating Reports with BudgetPak Overview This guide contains instructions on how to run BudgetPak canned reports and custom reports for adopted budget, adjusted budget, and actuals on an annual, quarterly,

More information

IBM. Administration Guide. IBM Emptoris Contract Management SaaS

IBM. Administration Guide. IBM Emptoris Contract Management SaaS IBM Emptoris Contract Management IBM Administration Guide 10.1.2 SaaS IBM Emptoris Contract Management IBM Administration Guide 10.1.2 SaaS ii IBM Emptoris Contract Management: Administration Guide Copyright

More information

Cisco TEO Adapter Guide for Microsoft Windows

Cisco TEO Adapter Guide for Microsoft Windows Cisco TEO Adapter Guide for Microsoft Windows Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

AWS Support. API Reference API Version

AWS Support. API Reference API Version AWS Support API Reference AWS Support: API Reference Copyright 2014 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. The following are trademarks of Amazon Web Services, Inc.: Amazon,

More information

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

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

More information

ANGEL CITY INTERACTIVE

ANGEL CITY INTERACTIVE ANGEL CITY INTERACTIVE Security API Guide Version 1.0 18 September 2017 Angel City Interactive 1117 10 th St., Apt. 2 626.202.6728 aidan@aidanatwork.com - http://demo.aidanatwork.com Preface Intended Audience

More information

Acled API. User Guide. Richard Holmes March 2017 ACLED API - VERSION 1 COPYRIGHT

Acled API. User Guide. Richard Holmes March 2017 ACLED API - VERSION 1 COPYRIGHT Acled API User Guide Richard Holmes March 2017 ACLED API - VERSION 1 COPYRIGHT 2017 1 Contents Acled API Introduction 3 API Access Detail 3 Sample API Calls and Responses 3 Response Format 3 Commands 5

More information

Warehouse General Daily Package Download Process

Warehouse General Daily Package Download Process Warehouse General Daily Package Download Process Morningstar April 01, 2011 V1.0 Prepared by: Adam Rossi adam.rossi@morningstar.com Morningstar Europe, Ltd. 1 Oliver s Yard 55-71 City Road London, EC1Y

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

SQL Functionality SQL. Creating Relation Schemas. Creating Relation Schemas

SQL Functionality SQL. Creating Relation Schemas. Creating Relation Schemas SQL SQL Functionality stands for Structured Query Language sometimes pronounced sequel a very-high-level (declarative) language user specifies what is wanted, not how to find it number of standards original

More information

Impact File Import Instructions

Impact File Import Instructions Impact File Import Instructions Step One: Fill Out the Import Template Utilize the Impact File Import template to place the required and optional information into the correct format. Note: You can download

More information

SUBSCRIPTION API. Document Version. Introduction

SUBSCRIPTION API. Document Version. Introduction SUBSCRIPTION API Contents Contents... 1 Document Version... 1 Introduction... 1 Procedure to configure Web Service User in Billdozer:... 2 Http Post Parameters... 2 Package... 3 List... 3 Response Parameter

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

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0

ForeScout CounterACT. Guest Management Portal for Sponsors. How-to Guide. Version 8.0 ForeScout CounterACT Guest Management Portal for Sponsors How-to Guide Version 8.0 Table of Contents Welcome... 3 Supported Guest Management Portal Browsers... 4 Sign In to the Guest Management Portal...

More information

SpreadServe Documentation

SpreadServe Documentation SpreadServe Documentation Release 0.1.0 John O Sullivan Aug 10, 2017 Contents 1 Installing The SpreadServe Addin 3 2 SpreadServe Addin Worksheet Functions 5 3 SpreadServe Addin Configuration 9 4 Indices

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 08 Tutorial 2, Part 2, Facebook API (Refer Slide Time: 00:12)

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

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat 1. What is AAE Travel Card? It s a reloadable pre-paid Visa Platinum Card that can hold multiple foreign currencies on one card. It can be used to pay for goods and services or to withdraw money from ATMs

More information

CS2304 Spring 2014 Project 3

CS2304 Spring 2014 Project 3 Goal The Bureau of Labor Statistics maintains data sets on many different things, from work place injuries to consumer spending habits, but what you most frequently hear about is employment. Conveniently,

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

ICANN Monitoring System API (MoSAPI)

ICANN Monitoring System API (MoSAPI) ICANN Monitoring System API (MoSAPI) Version 2.7 2018-03-06 1. Introduction... 3 1.1. Date and Time... 3 1.2. Credentials... 3 1.3. Glossary... 3 2. Common elements used in this specification... 5 3. Session

More information

FUSION REGISTRY WEB SERVICES API FUSION REGISTRY VERSION 9. Web Services API

FUSION REGISTRY WEB SERVICES API FUSION REGISTRY VERSION 9. Web Services API FUSION REGISTRY VERSION 9 Web Services API FUSION REGISTRY WEB SERVICES API Fusion Registry: 9.2 Document Last Updated: February 02 nd 2018 Version 20180209 CONTENTS 1 Overview... 3 2 Web Service Definitions...

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

Genesys Mobile Services API Reference. Phone Number Validation API

Genesys Mobile Services API Reference. Phone Number Validation API Genesys Mobile Services API Reference Phone Number Validation API 9/25/2018 Contents 1 Phone Number Validation API 1.1 API Query Genesys Mobile Services API Reference 2 Phone Number Validation API This

More information

IBM Atlas Suite Developers Guide: Reporting Views. for IBM Atlas Suite v6

IBM Atlas Suite Developers Guide: Reporting Views. for IBM Atlas Suite v6 IBM Atlas Suite Developers Guide: Reporting Views for IBM Atlas Suite v6 IBM Atlas Suite Developers Guide: Reporting Views This edition applies to version 6.0 of IBM Atlas Suite (product numbers 5725-D75,

More information

PHPKB API Reference Guide

PHPKB API Reference Guide PHPKB API Reference Guide KB Administrator Fri, Apr 9, 09 User Manual 96 0 This document provides details on how to use the API available in PHPKB knowledge base management software. It acts as a reference

More information

Accounting Transaction JSON API

Accounting Transaction JSON API Accounting Transaction JSON API Table of Contents Document Version...2 Introduction...2 Http Post Parameters...2 Account Status:...3 Get...3 Invoice:...4 Save...4 Receipt:...9 Save...9 Transaction:...13

More information

Creating International Wire Transfer Payments Reference Guide

Creating International Wire Transfer Payments Reference Guide Creating International Wire Transfer Payments Reference Guide Table of Contents Creating and Working with International Wire Transfers 3 Overview 3 Creating a Freeform Payment or Template 3 Approving or

More information

Other parameters are described with the relevant API call. For an API call that carries out a search, a POST payload in JSON format is added.

Other parameters are described with the relevant API call. For an API call that carries out a search, a POST payload in JSON format is added. Introduction to, page 1 Search and Search Result Export, page 1, page 2 Introduction to This section describes API calls that are not related to a specific model. The full would include the host name:

More information

Archer Documentation. Release 0.1. Praekelt Dev

Archer Documentation. Release 0.1. Praekelt Dev Archer Documentation Release 0.1 Praekelt Dev February 12, 2014 Contents 1 User Service 3 1.1 Installation................................................ 3 1.2 API....................................................

More information

Orchestrating Big Data Solutions with Azure Data Factory

Orchestrating Big Data Solutions with Azure Data Factory Orchestrating Big Data Solutions with Azure Data Factory Lab 3 - Scheduling and Monitoring Azure Data Factory Pipelines Overview In this lab, you will use Azure Data Factory to schedule a data pipeline

More information

Revised (10/17) Vault Services Currency & Coin Ordering Transmission Toolkit

Revised (10/17) Vault Services Currency & Coin Ordering Transmission Toolkit Revised (10/17) Vault Services Currency & Coin Ordering Transmission Toolkit Copyright 2017 by KeyBank, N.A. Vault Services Transmission Toolkit All rights reserved. Reproduction of any part of this work

More information

This script in Report.OnRenderBegin will get the RenderDetails for PDF.

This script in Report.OnRenderBegin will get the RenderDetails for PDF. Render Details When rendering a report, various output options can be set using the Render Wizard. These options are stored in the report when you save and therefore apply on the server also. If you want

More information

Composer Help. Web Request Common Block

Composer Help. Web Request Common Block Composer Help Web Request Common Block 7/4/2018 Web Request Common Block Contents 1 Web Request Common Block 1.1 Name Property 1.2 Block Notes Property 1.3 Exceptions Property 1.4 Request Method Property

More information

MARKETPLACE FEEDS - ERROR CODES

MARKETPLACE FEEDS - ERROR CODES MARKETPLACE FEEDS - ERROR CODES About this document This document provides the possible error codes you may see on your processing report and what to do to resolve them. Error Codes Error 15 Invalid image

More information

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12.

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12. The table below lists all of the Excel -style date and time functions provided by the WinCalcManager control, along with a description and example of each function. FUNCTION DESCRIPTION REMARKS EXAMPLE

More information

Online Banking for Business ACCOUNT INFORMATION & TRANSFERS USER GUIDE

Online Banking for Business ACCOUNT INFORMATION & TRANSFERS USER GUIDE Online Banking for Business ACCOUNT INFORMATION & TRANSFERS USER GUIDE Contents Contents... 2 Online Banking for Business Getting Started... 4 supported browsers... 5 Minimum system requirements... 5 Account

More information

SolarEdge API. Contents. SolarEdge API

SolarEdge API. Contents. SolarEdge API Last update: September 2017 SolarEdge API SolarEdge API Contents SolarEdge API... 2 Contents... 2 General... 4 Purpose and scope... 4 Acronyms and abbreviations... 4 Introduction... 4 Technical Information...

More information

INTEGRATION XML API R2 Rev /06/2016

INTEGRATION XML API R2 Rev /06/2016 Parityrate INTEGRATION XML API Date: Rev.: Page: 06/09/2011 2.12 20/06/2016 1 / 15 INTEGRATION XML API R2 Rev. 2.12 20/06/2016 1 Parityrate INTEGRATION XML API Date: Rev.: Page: 06/09/2011 2.12 20/06/2016

More information

Using Maps with the JSON LIBNAME Engine in SAS Andrew Gannon, The Financial Risk Group, Cary NC

Using Maps with the JSON LIBNAME Engine in SAS Andrew Gannon, The Financial Risk Group, Cary NC Paper 1734-2018 Using Maps with the JSON LIBNAME Engine in SAS Andrew Gannon, The Financial Risk Group, Cary NC ABSTRACT This paper serves as an introduction to reading JSON data via the JSON LIBNAME engine

More information

cielo24 Documentation

cielo24 Documentation cielo24 Documentation Release 1.4.10 cielo24 Dec 21, 2018 1 The Basics 3 1.1 Getting Started.............................................. 3 1.2 Sandbox API...............................................

More information

Service of Payment Information Exchange and Executing System (PIEES) API Version 1.1

Service of Payment Information Exchange and Executing System (PIEES) API Version 1.1 EVP International, JSC Service of Payment Information Exchange and Executing System (PIEES) API Version 1.1 Vilnius August 24, 2015 Contents Introduction... 3 Definitions... 3 References... 3 Description

More information

Enterprise Knowledge Platform

Enterprise Knowledge Platform Enterprise Knowledge Platform Training History Import/Export Document Information Document ID: EN145 Document title: EKP Training History Import/Export Version: 1.7 Document date: 14 April 2009 This document

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

Directorate B: Quality, methodology and information systems

Directorate B: Quality, methodology and information systems EUROPEAN COMMISSION EUROSTAT Directorate B: Quality, methodology and information systems EDAMIS Dataset Naming Convention (DSNC) The naming convention for 1. Datasets, 2. Dataset occurrences This document

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

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 USER S GUIDE Alloy Navigator API Integration with External Systems Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 Alloy Software Incorporated 88 Park Avenue, Unit 2B, Nutley, NJ 07110

More information

Public UBS MTF. MiFID II Identifier Management

Public UBS MTF. MiFID II Identifier Management Public UBS MTF MiFID II Identifier Management August 2017 Table of contents 1. Revision History 3 2. Summary 3 2.1. Background 3 2.2. Functionality 4 2.3. Service Access 4 2.4. Interface changes 4 3. Submission

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

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

Reladomo Test Resource

Reladomo Test Resource October 16, 2006 Table of Contents 1. Creating test cases using Reladomo objects. 1 2. MithraTestResource Introduction 1 3. MithraTestResource Detailed API.. 3 4.. 4 5. Test data file format.. 5 1. Creating

More information

API Integration Guide

API Integration Guide API Integration Guide Introduction SULU Mobile Solutions API is a programmable SMS message service. It enables your in-house applications to have fully featured SMS capabilities using your favorite programming

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

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

[301] JSON. Tyler Caraza-Harter

[301] JSON. Tyler Caraza-Harter [301] JSON Tyler Caraza-Harter Learning Objectives Today JSON differences with Python syntax creating JSON files reading JSON files Read: Sweigart Ch 14 https://automatetheboringstuff.com/chapter14/ JSON

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

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

More information

Technical Specifications Version 1.0

Technical Specifications Version 1.0 Technical Specifications Version 1.0 1 Introduction... 1 Purpose and intended audience of this document... 1 Scope... 1 2 Definitions... 1 3 System overview... 3 The ATHEX AMP... 3 ATHEX Members Portal

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

McAfee Advanced Threat Defense APIs

McAfee Advanced Threat Defense APIs McAfee Advanced Threat Defense 4.6.0 API Reference Guide McAfee Advanced Threat Defense APIs McAfee Advanced Threat Defense provides an Application Programming Interface (API) framework for external applications

More information

Ezypay Recurring Billing Integration 0. Documentation. Recurring Billing Integration

Ezypay Recurring Billing Integration 0. Documentation. Recurring Billing Integration Ezypay Recurring Billing Integration 0 Documentation Recurring Billing Integration Ezypay Recurring Billing Integration 1 Contents Introduction... 2 Authentication... 2 HTTP Status Codes... 3 Error Messages...

More information

Technical Note HDE TN GMSCS E TN GMSCS E HDE R3.02

Technical Note HDE TN GMSCS E TN GMSCS E HDE R3.02 Technical Note HDE Technical Note TN GMSCS0135-01E TN GMSCS0135-01E HDE R3.02 Issue 1.0 24th June 2016 Blank Page HDE Technical Note 1 Copyright and Trademark Notices 2016 Yokogawa Electric Corporation

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

Introduction. Copyright 2018, Itesco AB.

Introduction. Copyright 2018, Itesco AB. icatch3 API Specification Introduction Quick Start Logging in, getting your templates list, logging out Doing Quick Search Creating a Private Prospects Setting template Posting Private Prospects query,

More information

Remote identification service integration

Remote identification service integration Remote identification service integration Technical description 2018 Contents 1 Document... 3 2 Process schema... 3 3 Client s requirements... 3 4 HTTP REST communication... 4 5 Process Example... 7 6

More information

MyNets your online tool to access settlement reports and card transactions data

MyNets your online tool to access settlement reports and card transactions data MyNets your online tool to access settlement reports and card transactions data See your latest settlement data and monthly business summary Download to PDF, CSV or XML with the details you need Get ideas

More information

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation TM Software Defined Infrastructure FileLocker Application Programming Interface Documentation Infrascale 2013 Phone: +1.877.896.3611 Web: www.infrascale.com Table of Contents API URL and Base Parameters...

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

Data Format Specifications for the Collection of PCT National Phase Information

Data Format Specifications for the Collection of PCT National Phase Information PCT IS Division Data Format Specifications for the Collection of PCT National Phase Information Version Number 3.0 May 14, 2007 WORLD INTELLECTUAL PROPERT Y ORGANI ZATION GENEVA Page: 1 Document Information

More information

TOA4 Remote Procedure Call (RPC) API

TOA4 Remote Procedure Call (RPC) API TOA4 Remote Procedure Call (RPC) API Introduction The purpose of the TOA4 RPC API is to allow external software applications to exchange data with TOA4 and activate certain TOA4 functions. The TOA4 RPC

More information

API Documentation TOA4 Remote Procedure Call API

API Documentation TOA4 Remote Procedure Call API 2018-07-13 Version 2.0 1 Introduction The purpose of the TOA4 RPC API is to allow external software applications to exchange data with TOA4 and activate certain TOA4 functions. The TOA4 RPC API is a simple

More information

Shadow Health as an LTI Provider

Shadow Health as an LTI Provider Shadow Health as an LTI Provider Table of Contents 1. Getting Started 2. Getting Integrated 3. Need Help? Troubleshooting Guide (includes potential error messages) Tutorial: Blackboard Learn Registering

More information

cielo24 Documentation

cielo24 Documentation cielo24 Documentation Release 1.4.10 cielo24 January 18, 2017 1 The Basics 3 1.1 Getting Started.............................................. 3 1.2 Sandbox API...............................................

More information

Enterprise Data Catalog Fixed Limitations ( Update 1)

Enterprise Data Catalog Fixed Limitations ( Update 1) Informatica LLC Enterprise Data Catalog 10.2.1 Update 1 Release Notes September 2018 Copyright Informatica LLC 2015, 2018 Contents Enterprise Data Catalog Fixed Limitations (10.2.1 Update 1)... 1 Enterprise

More information

Freezing Rows or Columns as Headers

Freezing Rows or Columns as Headers Freezing Rows or Columns as Headers If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns

More information

Format description CSV (csv-extension) Rabo Internetbanking (Professional)

Format description CSV (csv-extension) Rabo Internetbanking (Professional) Format description CSV (csv-extension) Rabo Internetbanking (Professional) Contents 1 CSV Exportformat 3 1.1 General description 3 1.2 Characteristics 3 1.3 Cancellation format Tekst file Comma Separated

More information

Business ebanking Online Wire Transfers

Business ebanking Online Wire Transfers Business ebanking Online Wire Transfers This guide instructs users how to originate Wire transfers through Business ebanking. If you need support, please contact Treasury Services Support at (877) 920

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

Case study: accessing financial data

Case study: accessing financial data Case study: accessing financial data Prof. Mauro Gaspari: gaspari@cs.unibo.it Methods for accessing databases What methods exist to access financial databases? Basically there are several approaches to

More information