VacAgent. Agents API.

Size: px
Start display at page:

Download "VacAgent. Agents API."

Transcription

1 VacAgent Agents API

2 Revision sheet Version Rev. No Date Description /09/18 Improvements in document

3 1 Overview This document describes the REST APIs and resources provided by VacAgent s Agents API. The REST APIs are for developers who want to integrate VacAgent s inventory into their systems. VacAgent's REST APIs provide access to resources via URI paths. To use a REST API, your application will make an HTTP request and parse the response. The response format is JSON. Your methods will be the standard HTTP methods like GET, PUT, POST and DELETE. Because the REST API is based on open standards, you can use any web development language to access the API. 2 API version This is the documentation for Agents API REST API version 1, revision API version number Backward compatibility from the technical point of view is guaranteed for all API revisions within the same API version number. A change in the API version number implies that the new version is no longer backward compatible with the previous versions. While we do our best to continue supporting old versions of API, it may be sometimes necessary, due to constant evolution of the application, to end the support for those versions, and ask our customers to upgrade their applications to use the latest version of the API. 2.2 API revision number The API revision number changes each time the API is updated in such a way that the backward Compatibility with previous revisions of the same API version is usually maintained. New API methods may be added, and existing methods may become deprecated but still supported. 3 Implementation details 3.1 Communication protocol The Agents API REST API is a REST-like implementation based on the HTTP protocol, JSON data encoding and Unicode character encoding, over the secure HTTPS transport. 3.2 Authentication When invoking API methods, clients must authenticate using VacAgent s Agent account username and an API specific password, which may differ from the account password. The Agents REST API implements HTTP Basic Authentication (RFC 2617). You can find how to perform request to our API in Appendix Character encoding The API uses UTF-8 character encoding, the most widely used multi-byte character encoding for Unicode. 3.4 Data encoding All exchanges are encoded in the JSON (JavaScript Object Notation) format (RFC 4627). JSON is a simple machinereadable data-interchange format that provides light-weight serialization for structured data. Despite the acronym, JSON is language independent, and is widely implemented in modern programming languages.

4 JSON is able to directly represent the most general computer science data structures (see JSON native data types). Compared to XML, JSON has a significantly lower footprint, is more readable and more easily parsed. For more information about JSON, please refer to Data types In this API, we benefit from all native data types defined by the JSON format, and we also define other commonly used data types. Here's the exhaustive list of data types referenced in this documentation JSON native data types Type string number array bool null Description A sequence of zero or more UTF-8 characters An integer or floating point number An ordered and zero-based indexed sequence of values of any JSON type Boolean, may be either true or false The null value is a primitive value that represents the empty, null reference Extended data types Other non-primitive data types are used throughout this documentation. These are data abstractions with more specific, predefined characteristics. Type Description int Positive integer value represented as number. Range: string(x) string(x, Y) date string(10) string having exactly X characters String having X up to Y characters (both inclusive). Containing date representation in "YYYY-MM-DD" format. The default range " " " " may be further restricted by individual methods enum(x) object(x) Enum of type X Object of type X

5 3.6 Invoking API methods API methods are invoked by making an HTTPS GET/POST request on the VacAgent s Agents REST API servers HTTP request In order to invoke an API method, the client makes an HTTPS GET/POST request on where method is a unique case-sensitive string that identifies the desired API method. Basic HTTP authentication must be used in every request. The request Content-Type header must be set to application/json. Get data should be sent over the query string. Post data (HTTP request body) must hold a JSON representation of input data. Example of a valid HTTP request: GET /VacAgent/api/location HTTP/1.1 Content-Type: application/json Accept: application/json HTTP reply Each request results in an HTTP reply being returned to the client. The HTTP reply contains regular HTTP reply headers, an HTTP status code, and an optional HTTP content body. The HTTP status code must be examined in order to determine whether the API method was successfully invoked, or if a problem occurred (such as failed authentication, malformed message, ) Status code Code Description 200 Service was successfully invoked, process content body for further information (success/failure, ). 301 The URL of the service has changed permanently. The client should transparently follow the redirection. Note that VacAgent will inform all API users whenever the API method URL changes (by providing latest revision of this document), along with setting up this redirection. 400 Bad (malformed) HTTP request (according to HTTP and/or these API specifications). 401 Bad credentials (i.e. missing or invalid username and/or password). 403 Access refused (i.e. access from unauthorized IP address or network). 404 Unknown API method. 405 Method not allowed (POST method expected). 410 The requested version of the API is no longer available.

6 413 Request entity too large (i.e. raw post data size exceeds the maximum allowed size). 415 Unsupported media type (i.e. the received Content-Type is not application/json, or the content itself is not a valid JSON string). 500 The server encountered an unexpected condition which prevented it from fulfilling the request. Client should wait and resubmit the request. 503 The server is currently unable to handle the request due to temporary overloading or maintenance of the server. Client should wait and resubmit the request. Note that other RFC 2616 compliant HTTP status codes may be returned by the API server or HTTP proxies. Those codes must be interpreted as specified by RFC Content body The HTTP reply content body is status dependent. On successful API method invocation (status: 200), the server replies with the Standard method reply object. Otherwise, the Content-Type header is set to text/plain, and the content body may contain a human readable message explaining the reason of the failure. The message is a hint for developers, and is not intended to be parsed and understood by software. Developers should however consider logging these messages for further review Standard method reply object On successful API method invocation, the server returns 200 HTTP status code and fills the HTTP reply content body with a standard method reply object. The reply Content-Type is set to application/json. 4 Testing & Production 4.1 Sandbox VacAgent s sandbox provides a testing environment for your code integration. All REST APIs are available on the sandbox via Contact us to receive credentials for the sandbox. 4.2 Production Once you are ready to move your code into production, let us know so we can assign you with production credentials. Production APIs are available via 5 API methods reference This section contains a short reference of the API methods provided by this API version. A fully interactive documentation and testing environment is available at for all methods.

7 5.1 Location Usage This method returns a list of all system supported locations. Use this method to build a local cache of all VacAgent s locations mapping location name and ID Input This method can accept a parameter term to return all matching locations. Currency Output This method returns a key-value array. [{"key":690,"value":"akaroa, New Zealand"},{"key":840,"value":"Alta Gracia, Argentina"}, {"key":722,"value":"ankara, Turkey"}] 5.2 Currency Usage This method returns a list of all system supported currencies. Use this method to build a local cache of all currencies mapping currency symbol, rate, code and ID Input This method does not accept any input Output This method returns a currency rates array. All rates are specified vs the USD. [{"id":1,"code":"usd","symbol":"$","rate":1},{"id":2,"code":"ils","symbol":" ","rate": },{"id":3,"code":"gbp","symbol":" ","rate": },{"id":4,"code":"eur","symbol" :" ","rate": }] 5.3 Enum Usage This method returns a list of values for different enum types in VacAgent used in this API. Use this method to translate enum values Input This method accepts a parameter type which should be one of the following: Type amenity bed building apartment Description List of amenities List of bed types List of building types List of apartment types

8 5.3.3 Output This method outputs an array of key-values. Example for api/enum?type=amenity: [{"key":1,"value":"cable TV"},{"key":2,"value":"Wireless Internet"},{"key":3,"value":"Air Conditioning"},{"key":4,"val ue":"elevator in Building"},{"key":5,"value":"Wheelchair Accessible"},{"key":6,"value":"Pool"},{"key":7,"value":"Kitch en"},{"key":8,"value":"free Parking on Premises"},{"key":9,"value":"Doorman"},{"key":10,"value":"Gym"},{"key":11," value":"hot Tub"},{"key":12,"value":"Indoor Fireplace"},{"key":13,"value":"Buzzer/Wireless Intercom"},{"key":14,"val ue":"breakfast"},{"key":15,"value":"washer"},{"key":16,"value":"dryer"},{"key":17,"value":"coffee Machine"},{"key": 18,"value":"Private Roof"},{"key":19,"value":"Garden"},{"key":20,"value":"Heating"},{"key":21,"value":"TV"},{"key":2 2,"value":"Internet"},{"key":23,"value":"Family/Kid Friendly"}] 5.4 Search Usage This method searches for available properties in the system according to the search criteria passed to it Input This method accepts multiple parameters via URL: Parameter Required Default Description destination.id No - Id of location to search in destination.city No - Exact name of location to search in destination.wildcard No - Wildcard name of location to search in checkin Yes - Arrival date YYYY-MM-DD checkout Yes - Departure date YYYY-MM-DD guests No 2 Number of guests currencyid Yes - Currency in which we would like to receive our results instantbooking No true If true, search will be done only on instant bookable properties. filter.amenities No - Array of required amenity IDs (api/enum?type=amenity) filter.bedrooms No - Type of apartment (api/enum?type=apartment) filter.bathrooms No 0 Number of bathrooms filter.beds No 0 Number of beds

9 page No 1 Page number resultsperpage No 15 Number of results to return per page. sort No Price Results sort method. Price or PriceDescending Output This method outputs a SearchResult object: request Object(SearchRequest) Your search request properties Array[Object(PropertySearchResult)] Array of matching properties paging Object(ApiPaging) Paging object PropertySearchResult object: id Int Property ID name String Property name imageurl String Property main image url address String Property address locationid Int Property location id Latitude Float Property latitude coordinate Longitude Float Property longitude coordinate locationname String Property location name type Enum(ApartmentType) Type of the apartment (api/enum?type=apartment) defaultrate Object(PropertyDefaultRateInfo) Default rate information PropertyDefaultRateInfo object: currencyid Int Currency id

10 currencycode String Currency code pricepernight Int Property default price per night minstay Int Default minimum stay originalcurrencyid Int Property s original currency id originalcurrencycode String Property s original currency code originalpricepernight Int Property s original default price per night ApiPaging object: currentpage Int Current returned page totalpages Int Total available pages 5.5 Property Usage This method returns information about a specific property Input This method accepts the following: Parameter Required Default Description id Yes - Id of property currencyid Yes - Currency id Output This method outputs a PropertyInformation object: address String Property address apartmenttype Enum(ApartmentType) Number of bedrooms in the apartment (api/enum?type=apartment) Bathrooms Int Number of bathrooms

11 Beds Int Number of bedrooms buildingtype Enum(BuildingType) Property building type (api/enum?type=building) bedtype Enum(BedType) Property bed type (api/enum?type=bed) checkintime Int Checkin hour of the day. From 7 to 20. checkouttime Int Checkout hour of the day. From 7 to 20. cleaningfee Int Cleaning fee that is added for each booking request. currencyid Int Currency for all prices currencycode String Currency code Id Int Property ID locationid Int Property s location id locationname String Property s location name Logo String Main property image amenities Array(int) Array of amenity ids (api/enum?type=amenity) extraguestfeefrom Int Number of guests from which any additional guests is charged for an extra guest fee extraguestfee Int Extra guest fee / night name String Property s name size Int Size of the apartment in sqft accommodates Int Max number of guests the property can accommodate zipcode String Property s zipcode floor String(0,4) Property s floor latitude Float Property s latitude coordinate longitude Float Property s latitude coordinate description String Property s description

12 services String Property s services description instantbooking Bool Is property available for instant booking area Array(int) Array of sub location ids images Array(string Array of image urls of the property unavailable Array(date) Array of dates in which the property is unavailable cancellationpolicy Enum(CancellationPolicy) Fixed cancellation policy cancellationpolicies Array(Object(PropertyCancellationPolicyModel)) List of cancellation policy conditions PropertyCancellationPolicyModel object: id Int Policy condition ID propertyid Int Property ID validfrom Int Number of days before checkin when this policy becomes valid validto Int Number of days before checkin when this policy becomes invalid percentageoftotal Int Percentage of full price to pay in case of cancellation includefees Bit Does cancellation includes fees {"address":"king George 78","apartmentType":1,"bathrooms":1,"beds":1,"buildingType":1,"b edtype":0,"checkintime":8,"checkouttime":9,"cleaningfee":30,"currencyid":1,"currencycode ":"USD","id":3920,"locationID":22,"locationName":"Tel Aviv","logo":" 1.cloudfront.net/PropertyLogos/20/image jpg","amenities":[8,16,10,23,4,19],"extraGuestFeeFrom":2,"extraGuestFee":20,"name":"Sp acious SoHo Loft Apartment in New York","size":900,"accommodates":6,"zipcode":"12345"," floor":"3","description":"lorem Ipsum is simply dummy text of the printing and typesetti ng industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500 s, when an unknown printer took a galley of type and scrambled it to make a type specime n book. It has survived not only five centuries, but also the leap into electronic types etting, remaining essentially unchanged. It was popularised in the 1960s with the releas e of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop pub lishing software like Aldus PageMaker including versions of Lorem Ipsum.","services":"Lo rem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer t

13 ook a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentiall y unchanged. It was popularised in the 1960s with the release of Letraset sheets contain ing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","instantBooking":true,"areas":[1031,1076,1 078,1035,1034],"images":[" jpg"," jpg"," jpg"," jpg"," jpg"," jpg"," jpg"," 5.6 Availability Usage This method returns information about a specific property s availability and pricing Input This method accepts an AvailabilityRequest object: Parameter Required Default Description id Yes - Id of property From Yes - Arrival date YYYY-MM-DD To Yes - Departure date YYYY-MM-DD Guests Yes - Number of guests currencyid Yes - Currency id

14 GET api/availability/3920/ / /2/ Output This method outputs an AvailabilityResult object: propertyid Int Property id isavailable Bool Is property available for these dates Error String If isavailable=false, Error will contain reason (unavailable dates, min stay not reached, etc) Checkin Date string(10) Date of arrival Checkout Date string(10) Date of departure Guests Int Number of guests Price Int Avg. Price per night for the entire stay Cleaningfee Int Cleaning fee per booking extrapersonfee Int Extra person fee extrapersons Int Number of extra persons Total Int Total price = ((extrapersons * extrapersonfee) + Price) * Nights) + CleaningFee. currencyid Int Currency id of all prices originalcurrencyid Int Property s original currency id originalcleaningfee Int Property s cleaning fee in original currency originalextrapersonfee Int Property s extra person fee in original currency originalprice Int Property s avg.price / night in original currency {"propertyid":3920,"isavailable":true,"error":null,"checkin":" t00:00:00","checkout":" T00:00:00","guests":2,"price":100,"cleaningFee":30,"extraPersonFee":20,"extraPersons":0,"total":930,"currencyI D":1}

15 5.7 Book Usage This method lets you book a property after receiving availability information for via api/availability Input This method accepts a PropertyBooking request: propertyid Int Property id checkin Date string(10) Date of arrival checkout Date string(10) Date of departure guests Int Number of guests guest String The guest s address guestname1 Object(GuestName) Primary guest name guestname2 Object(GuestName) Optional guest name guestname3 Object(GuestName) Optional guest name pricepernight Int Avg. Price per night for the entire stay cleaningfee Int Cleaning fee per booking extrapersonfee Int Extra person fee extrapersons Int Number of extra persons total Int Total price = ((extrapersons * extrapersonfee) + Price) * Nights) + CleaningFee. currencyid Int Currency id of all prices payment Object(PaymentCard) Payment details object guestinformation Object(PersonalDetails) Personal details of booker PaymentCard object: Type String Credit card type (VISA, Mastercard or AMEX) Number String(8,16) Credit card number

16 Series String(3,4) Credit card cvv code Month Int Expiry month (1-12) Year Int Expiry year YYYY CardHolderName String Credit card holder name PersonalDetails object: Firstname String First name Lastname String Last name String Valid address Phone String Valid phone number (including +country code) GuestName object: Degree String Mr/Mrs Name String Guest full name POST /api/book HTTP/1.1 Host: sandbox.vacagent.net Content-Type: application/json { "propertyid": 3920, "checkin": " ", "checkout": " ", "guests": 2, "price": 100, "cleaningfee": 30, "extrapersonfee": 20, "extrapersons": 0, "total": 930, "currencyid": 1, "guestinformation": { "firstname": "John", "lastname": "Doe", " ": "john.doe@gmail.com", "phone": " " }, "payment": { "type": "Mastercard", "number": " ", "month": 12, "year": 2016, "series": 123, "cardholdername": "John Doe" } } Output This method outputs a BookingResult object Status String Booking result: 'Success' or SuccessWaitingForApproval or 'PricesMismatch' or 'NotAvailable' or 'InvalidGuestInfo' or

17 FinalPriceLowerThanNet or 'CCError' or 'InternalError' CCResult Object(CCChargeResult) Credit card charge result BookingID Int Newly created booking ID. -1 on error CCChargeResult object: Status String Charge status: 'Valid' or 'Denied' or 'Expired' or 'Invalid' or 'InternalError' AuthorizationCode String Credit company authorization code. ChargeAmount Number Amount charged ChargeCurrencyID Int The charge currency id Appendix 1. var requestpromise = require('request-promise'); // Change credentials here!!!! var user = 'user@user.com'; var password = 'your_password'; var base64encodeddata = new Buffer(user + ':' + password).tostring('base64'); // Get locations requestpromise.get({ uri: ' headers: { 'Authorization': 'Basic ' + base64encodeddata }, json: true }).then(function ok(jsondata) { console.dir(jsondata); }).catch(function fail(error) { console.log(error); });

Kigo RENTAL AGENCY REST API - V1. API revision 12 Document revision 18. Contact Vedad KAJTAZ Kigo, Inc.

Kigo RENTAL AGENCY REST API - V1. API revision 12 Document revision 18. Contact Vedad KAJTAZ Kigo, Inc. Kigo RENTAL AGENCY REST API - V1 API revision 12 Document revision 18 Contact Vedad KAJTAZ vedad@kigo.net Page 1 / 70 1 Revision history API Rev Document Date Changes Rev Status 1 1 DRAFT 04 May 2011 First

More information

Kigo RENTAL AGENCY REST API - V1. API revision 15 Document revision 21. Contact Kigo, Inc.

Kigo RENTAL AGENCY REST API - V1. API revision 15 Document revision 21. Contact Kigo, Inc. Kigo RENTAL AGENCY REST API - V1 API revision 15 Document revision 21 Contact api@kigo.net Page 1 / 80 1 Revision history API Rev Document Date Changes Rev Status 1 1 DRAFT 04 May 2011 First implementation

More information

Beautiful Lighting Effects

Beautiful Lighting Effects Beautiful Lighting Effects Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry s standard dummy text ever since the 1500s, when an unknown printer

More information

CORPORATE. Brand Standards Guide

CORPORATE. Brand Standards Guide CORPORATE Brand Standards Guide JANUARY 2017 ALBERTA URBAN MUNICIPALITIES ASSOCIATION ALBERTA MUNICIPAL SERVICES CORPORATION Table of Contents Corporate Identity 3 4 Key Messages 4 Corporate Colours 5

More information

Text Style Italic ROTATE RGB RED. ROTATE CMYK Yellow. ROTATE CMYK Cyan ROTATE RGB BLUE

Text Style Italic ROTATE RGB RED. ROTATE CMYK Yellow. ROTATE CMYK Cyan ROTATE RGB BLUE Text Mirror Line Spacing: mm Line Spacing: -.5mm Line Spacing: 1.mm g and typesetting industry. Lorem Ipsum has be en the industry's standard dummy text ever sinc e the 15s, when an unknown printer took

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

SIP Compliance APPENDIX

SIP Compliance APPENDIX APPENDIX E This appendix describes Cisco SIP proxy server (Cisco SPS) compliance with the Internet Engineering Task Force (IETF) definition of Session Initiation Protocol (SIP) as described in the following

More information

ewallet API integration guide version 5.1 8/31/2015

ewallet API integration guide version 5.1 8/31/2015 ewallet API integration guide version 5.1 8/31/2015 International Payout Systems, Inc. (IPS) ewallet API Integration Guide contains information proprietary to IPS, and is intended only to be used in conjunction

More information

Header Status Codes Cheat Sheet

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

More information

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

Html 5 Basic structure. <!DOCTYPE html> HTML <!DOCTYPE> Declaration. Mansour

Html 5 Basic structure. <!DOCTYPE html> HTML <!DOCTYPE> Declaration. Mansour HTML Declaration This is an HTML document. To declare the language of a Web page Opening and closing of HTML Tag

More information

Standardized XML cache format for describing hotel availability data and geographic hierarchy

Standardized XML cache format for describing hotel availability data and geographic hierarchy Standardized XML cache format for describing hotel availability data and geographic hierarchy Version 1.2.0, 2013-06-10 Specification Version 1.2.0 1 Contents Contents 2 Introduction 2 Changelog 4 Version

More information

Myriad Pro Italic 15 pt. Lites of the word in classical literature, discovered the undoubtable source.

Myriad Pro Italic 15 pt. Lites of the word in classical literature, discovered the undoubtable source. 16 mm 16 mm 16 mm Myriad Pro Bold, 35 pt 16 mm Myrad Pro Semibold 10 pt. Lorem Ipsum is simply dummy text of the printing and typesetting been the industry s standard dummy text ever since the 1500s, when

More information

RESTFUL WEB SERVICES - INTERVIEW QUESTIONS

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

More information

2016 Migs Brand Design Standards

2016 Migs Brand Design Standards 2016 Migs Brand Design Standards 676-612-8284 email; studiob.bradford@gmail.com FB: https://www.facebook.com/pages/studiob3/104731049570283 LinkedIn : http://www.linkedin.com/in/carlbradford3 Brand Identity

More information

TMS FNC PDF Library. TMS SOFTWARE TMS FNC UI Pack DEVELOPERS GUIDE

TMS FNC PDF Library. TMS SOFTWARE TMS FNC UI Pack DEVELOPERS GUIDE TMS FNC PDF Library December 2016 Copyright 2016 by tmssoftware.com bvba Web: http://www.tmssoftware.com Email: info@tmssoftware.com 1 Index Getting Started... 3 Starting a new document... 3 Adding pages...

More information

Media Temple API Reference. API v1.0 (beta) - 2/14/11

Media Temple API Reference. API v1.0 (beta) - 2/14/11 Table of Contents 1. API Overview............................................................................................... 3 1.1 Global API Mechanisms..................................................................................

More information

EWAY RAPID SETUP GUIDE FOR

EWAY RAPID SETUP GUIDE FOR EWAY RAPID SETUP GUIDE FOR CONTENTS 1. Add ewayrapid payment method to your online shop... 2 2. Configure and activate ewayrapid payment method... 3 3. Add eway logo and credit card types to your website...

More information

PAGE. DocumentViewer_v3 WIREFRAMES DESKTOP & TABLET 2.3 VERSION. Thu Feb PUBLISHED. Columbus,Tom AUTHORS

PAGE. DocumentViewer_v3 WIREFRAMES DESKTOP & TABLET 2.3 VERSION. Thu Feb PUBLISHED. Columbus,Tom AUTHORS 1 DESKTOP TABLET VERSION 2.3 2 Viewer Anatomy Tool Bar 36px tall by X wide. The width should adjust according to available screen real-estate Node in Focus Display Height and width should adjust according

More information

Getting Started with Bookerville: CREATING PROPERTIES

Getting Started with Bookerville: CREATING PROPERTIES Getting Started with Bookerville: CREATING PROPERTIES TAB 1: PROPERTY SETUP Create Your First Property - Introduction To create your first property, give yourself some time and make sure you have handy

More information

Electronic Tax Clearance Verification Web Service Specification

Electronic Tax Clearance Verification Web Service Specification Document Version 1.1 Document Last Updated 12/10/2017 Page 1 of 9 Table of Contents 0 DOCUMENT INFORMATION... 3 SYNOPSIS... 3 DOCUMENT CHANGE HISTORY... 3 ABBREVIATIONS USED IN THIS DOCUMENT... 3 1 INTRODUCTION...

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

NDEV Mobile HTTP Services for NDEV Mobile Clients

NDEV Mobile HTTP Services for NDEV Mobile Clients NDEV Mobile HTTP Services for NDEV Mobile Clients Notice NDEV Mobile HTTP Services for NDEV Mobile Clients Copyright 2011-2012 Nuance Communications, Inc. All rights reserved. Published by Nuance Communications,

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

[MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol

[MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol [MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft

More information

Troubleshooting Guide: SAP NetWeaver Gateway

Troubleshooting Guide: SAP NetWeaver Gateway Troubleshooting Guide: SAP NetWeaver Gateway Contents Error Occurred What to do?... 1 Error Log... 1 Error Context... 2 Replay the Error in Gateway Client... 3 Gateway Client... 6 HTTP Requests and Responses...

More information

TC-IOT M2M CORE Services Protocol. User Manual. Version: 1.0 Date:

TC-IOT M2M CORE Services Protocol. User Manual. Version: 1.0 Date: TC-IOT M2M CORE Services Protocol User Manual Version: 1.0 Date: Document Name: TC-IOT M2M CORE Services Protocol - User Manual Version: 1.0 Date: Document ID: TC_IOT_M2M_CORE_Protocol_User_Manual_EN_v1.0

More information

Smartphone Mobile UI elements

Smartphone Mobile UI elements Smartphone Mobile UI elements v.0. - July, 0 Buttons List view Edit panel Title SLIDER seconds Tabs + Accordions This is a simple connected tab that sets the on tab to the content clock to visually connect

More information

Hotel Booking Plugin for WordPress Documentation

Hotel Booking Plugin for WordPress Documentation Hotel Booking Plugin for WordPress Documentation Updated on November 17, 2017 Overview Quick Start Guide Installation Add Seasons Add Services Add Accommodation Types Add Amenities Add Categories Add Rates

More information

PAYMENT SYSTEM RESPONSE CODES

PAYMENT SYSTEM RESPONSE CODES PAYMENT SYSTEM RESPONSE CODES Bank s Text Text APPROVED 00 Approved 08 Honour with ID 11 Approved VIP (not used) 16 Approved, Update Track 3 (not used) 77 Approved (ANZ only) DECLINED 01 Refer to Card

More information

Inland Revenue. Build Pack. Identity and Access Services. Date: 04/09/2017 Version: 1.5 IN CONFIDENCE

Inland Revenue. Build Pack. Identity and Access Services. Date: 04/09/2017 Version: 1.5 IN CONFIDENCE Inland Revenue Build Pack Identity and Access Services Date: 04/09/2017 Version: 1.5 IN CONFIDENCE About this Document This document is intended to provide Service Providers with the technical detail required

More information

XML API, version 15 Release 2016:46 Document version:

XML API, version 15 Release 2016:46 Document version: XML API, version 15 Release 2016:46 Document version: 2018-12-13 The API contains two different search methods that can be implemented, static or non-static. We recommend implementing the non-static as

More information

Cvent Passkey. Group Booking. User Guide v1.0. February 2017

Cvent Passkey. Group Booking. User Guide v1.0. February 2017 Cvent Passkey Group Booking User Guide v1.0 February 2017 Overview... 4 Group Booking Concepts... 4 Enabling Group Booking... 5 Organization or Hotel Profile... 5 Bundles... 5 Event... 5 Configuring Attendee

More information

FlipKey Supplier API. Version 1.10 (9/10/2014)

FlipKey Supplier API. Version 1.10 (9/10/2014) FlipKey Supplier API Version 1.10 (9/10/2014) Intake API Change Log API Format Authentication API Request Formats API Response Formats Data Formats API Functions 1. Owner Data 1.1. New Owner POST 1.2.

More information

Thrift specification - Remote Procedure Call

Thrift specification - Remote Procedure Call Erik van Oosten Revision History Revision 1.0 2016-09-27 EVO Initial version v1.1, 2016-10-05: Corrected integer type names. Small changes to section headers. Table of Contents 1.

More information

[MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol

[MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol [MS-ADFSOAL]: Active Directory Federation Services OAuth Authorization Code Lookup Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft

More information

Working with Cisco MediaSense APIs

Working with Cisco MediaSense APIs MediaSense API Conventions, page 1 Job States, page 8 Precedence Rules for paramconnector and fieldconnector, page 9 Encoding, page 9 Special Characters in Text Strings, page 9 Request and Response Parameter

More information

Tresorit Active Directory Connector V2.0. User s Guide

Tresorit Active Directory Connector V2.0. User s Guide Tresorit Active Directory Connector V2.0 User s Guide Copyright by Tresorit 2018 Contents About Tresorit Active Directory Connector... 4 Features... 4 Synchronization logic... 5 About managed users and

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

Integrating with ClearPass HTTP APIs

Integrating with ClearPass HTTP APIs Integrating with ClearPass HTTP APIs HTTP based APIs The world of APIs is full concepts that are not immediately obvious to those of us without software development backgrounds and terms like REST, RPC,

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

Canonical Identity Provider Documentation

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

More information

Merchant e-solutions Payment Acceptance User Guide for Magento version 2.x ( M2 )

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

More information

DIGITAL SERVICES. API Documentation Retrieve Transactions

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

More information

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

Nippon Travel Agency Hotel & Ryokan Booking System

Nippon Travel Agency Hotel & Ryokan Booking System Nippon Travel Agency Hotel & Ryokan Booking System Agent s Manual OCT 2017 No. 3 edition 1 This is a dedicated system for agents to sell reservations online. You can search in about 1600 hotels. The prices

More information

Virtuoso.com Hotel Booking Program. Overview

Virtuoso.com Hotel Booking Program. Overview Virtuoso.com Hotel Booking Program Overview For Agency Owners, Managers and Advisors The virtuoso.com Hotel Booking Program provides a secure way for advisors to book participating Virtuoso Hotels & Resorts

More information

E POSTBUSINESS API Login-API Reference. Version 1.1

E POSTBUSINESS API Login-API Reference. Version 1.1 E POSTBUSINESS API Login-API Reference Imprint Software and documentation are protected by copyright and may not be copied, reproduced, stored, translated, or otherwise reproduced without the written approval

More information

Subscriptions and Recurring Payments 2.X

Subscriptions and Recurring Payments 2.X Documentation / Documentation Home Subscriptions and Recurring 2.X Created by Unknown User (bondarev), last modified by Unknown User (malynow) on Mar 22, 2017 Installation Set up cron (for eway) Configuration

More information

Student WebAdvisor Training Manual

Student WebAdvisor Training Manual Student WebAdvisor Training Manual Contents Logging into WebAdvisor..2 Registering for a Class Section..4 Paying on My Account. 9 Dropping a Class Section 12 1 Logging into WebAdvisor STEPS 1. Click the

More information

Queens Library API Requirements Document For e-content Partners

Queens Library API Requirements Document For e-content Partners Queens Library API Requirements Document For e-content Partners Version Date Author Description 1 08/03/2015 Surinder Pal Singh Draft 1.1 08/07/2015 Surinder Pal Singh Revised by Team 1.2 08/19//2015 Surinder

More information

Information About SIP Compliance with RFC 3261

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

More information

Ajax Ajax Ajax = Asynchronous JavaScript and XML Using a set of methods built in to JavaScript to transfer data between the browser and a server in the background Reduces the amount of data that must be

More information

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script Accessing the Progress OpenEdge AppServer From Progress Rollbase Using Object Script Introduction Progress Rollbase provides a simple way to create a web-based, multi-tenanted and customizable application

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

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

OMF Documentation. Release 1.1-alpha1. OSIsoft, LLC

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

More information

Hypertext Transport Protocol

Hypertext Transport Protocol Hypertext Transport Protocol HTTP Hypertext Transport Protocol Language of the Web protocol used for communication between web browsers and web servers TCP port 80 HTTP - URLs URL Uniform Resource Locator

More information

B2G Mail - No Account. Mail. To send and receive , you will need to setup an account. Add Account. Add Hotmail. Add Gmail.

B2G Mail - No Account. Mail. To send and receive  , you will need to setup an account. Add  Account. Add Hotmail. Add Gmail. BG Mail - No Account Mail To send and receive email, you will need to setup an account. Add Email Account Add Hotmail Add Gmail Add Yahoo Mail BG Mail - New Account Setup New Gmail Account Setup. Returns

More information

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

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

More information

How to Guide: Using the OTA Extranets

How to Guide: Using the OTA Extranets 2 How to Guide: Using the OTA Extranets What is an OTA? OTA is short for Online Travel Agent, which include Agoda, Booking.com and Expedia. What is an Extranet? An extranet is an OTAs easy to use online

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

CSC Web Technologies, Spring Web Data Exchange Formats

CSC Web Technologies, Spring Web Data Exchange Formats CSC 342 - Web Technologies, Spring 2017 Web Data Exchange Formats Web Data Exchange Data exchange is the process of transforming structured data from one format to another to facilitate data sharing between

More information

Technical Guide. REST API for Mobile Outbound SMS

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

More information

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

The search being performed may take a significant time so a forking proxy must send a 100 Trying response.

The search being performed may take a significant time so a forking proxy must send a 100 Trying response. SIP Response Codes Article Number: 178 Rating: Unrated Last Updated: Wed, Nov 15, 2017 at 2:31 PM SIP Response Codes 1xx Provisional Responses 100 Trying Extended The search being performed may take a

More information

DIGITAL SERVICES. API Documentation Product Pricing

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

More information

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

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

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

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

The Platform ecommerce Functionality

The Platform ecommerce Functionality The Platform ecommerce Functionality EXTERNAL ADMINISTRATOR GUIDE 2 ECOMMERCE FUNCTIONALITY (EXTERNAL ADMINISTRATOR GUIDE) Contents Log on to The Platform 4 Search for a Training Course 6 Checking Training

More information

Natr ecommerce Services

Natr ecommerce Services General Overview The Nature s Sunshine ecommerce Services is a Web Service/API or collection of RESTful service calls. These service calls enable Nature s Sunshine distributors to get data from, and request

More information

API Application Going Live. Zhuowei Yang

API Application Going Live. Zhuowei Yang API Application Going Live Zhuowei Yang Agenda API Credentials Best Practices Application Compatibility Check 2 API Credentials API credentials API credentials and User Token Token Tool for single user

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

Detects Potential Problems. Customizable Data Columns. Support for International Characters

Detects Potential Problems. Customizable Data Columns. Support for International Characters Home Buy Download Support Company Blog Features Home Features HttpWatch Home Overview Features Compare Editions New in Version 9.x Awards and Reviews Download Pricing Our Customers Who is using it? What

More information

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community 1 of 16 1/5/2011 3:56 PM PayPal Home Support Search PayPal Developer Central Search Developer Home Partner Solutions How to Library Training Community Integration Overview HTML Overview Website Payments

More information

Calypso Resort & Towers. Guest Pass Access System User s Guide (Revision 1.0)

Calypso Resort & Towers. Guest Pass Access System User s Guide (Revision 1.0) Calypso Resort & Towers Guest Pass Access System User s Guide (Revision 1.0) 1. SUMMARY/OVERVIEW... 3 2. OWNER AND MANAGEMENT COMPANY REGISTRATION... 4 3. LOGGING BACK IN... 6 4. HELP AND SUPPORT... 6

More information

Xtended Services Interface

Xtended Services Interface Xtended Services Interface Interface Specification Release 20.0 Document Version 1 9737 Washingtonian Boulevard, Suite 350 Gaithersburg, MD 20878 Tel +1 301.977.9440 WWW.BROADSOFT.COM BroadWorks Guide

More information

TRANSACTIONS EXPORT API

TRANSACTIONS EXPORT API TRANSACTIONS EXPORT API Specifications Document ID: TransExportAPI Document Version: 1.3 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone + 1 (800) 211-1256 Fax + 1 (732)

More information

The Platform ecommerce Functionality

The Platform ecommerce Functionality The Platform ecommerce Functionality EXTERNAL USER GUIDE 2 ECOMMERCE FUNCTIONALITY (EXTERNAL USER GUIDE) Contents Create a login for The Platform 4 Log on to The Platform 8 Search for a Training Course

More information

Vantiv ecommerce for Magento 2

Vantiv ecommerce for Magento 2 Vantiv ecommerce for Magento 2 User Guide Version 1.0.0 June 2017 Table of Content 1. Onboarding...3 2. Installation...3 3. Configuration...5 4. Nuances for each MOP...22 5. Checkout...23 6. Stored Payment

More information

ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation. Revision: 8/22/2018

ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation. Revision: 8/22/2018 ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation Revision: 8/22/2018 Table of Contents Revision: 8/22/2018... 1 Introduction... 3 Subscription... 3 Interface... 3 Formatting the

More information

DRAFT COPY

DRAFT COPY Inter-Entity Payment Protocol (IPP) The Inter-Entity Payment Protocol (IPP) facilitates adhoc interactions between independent accounting systems on the web. It is a server-to-server protocol. 1 Brands,

More information

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Web Access: HTTP 16501018 Mehmet KORKMAZ World Wide Web What is WWW? WWW = World Wide Web = Web!= Internet Internet is a global system of interconnected computer

More information

You are reading an online chapter for Optimizing ColdFusion 5 by Chris

You are reading an online chapter for Optimizing ColdFusion 5 by Chris APPENDIX B 1 2 Optimizing ColdFusion 5 You are reading an online chapter for Optimizing ColdFusion 5 by Chris Cortes (Osborne/McGraw-Hill, 2001). This online chapter is intended to supplement the printed

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Billing Configuration API 1.0

Billing Configuration API 1.0 Billing Configuration API 1.0 Integration Guide Version 1.0.1 Page 1 of 11 CONTENTS CONTENTS... 2 DOCUMENT CHANGE LOG... 3 VERSIONING... 4 BILLING CONFIGURATION WEB SERVICE... 4 INTRODUCTION... 5 WEB SERVICES

More information

REST Admin API. Note: Version 9.X or higher is required for the support of REST API. Version /17

REST Admin API. Note: Version 9.X or higher is required for the support of REST API. Version /17 REST Admin API Setup Each application that will communicate to the SecurAccess server via the REST API interface will require authorisation as a trusted source, located under Config/REST API from the SecurEnvoy

More information

ovirt SSO Specification

ovirt SSO Specification ovirt SSO Specification Behavior Changes End user visible changes The password delegation checkbox at user portal login is now a profile setting. Sysadmin visible changes Apache negotiation URL change

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

DPD API Reference Documentation

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

More information

Certified Secure Web Application Secure Development Checklist

Certified Secure Web Application Secure Development Checklist www.certifiedsecure.com info@certifiedsecure.com Tel.: +31 (0)70 310 13 40 Loire 128-A 2491 AJ The Hague The Netherlands About Certified Secure Checklist Certified Secure exists to encourage and fulfill

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

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Lecture 9a: Sessions and Cookies

Lecture 9a: Sessions and Cookies CS 655 / 441 Fall 2007 Lecture 9a: Sessions and Cookies 1 Review: Structure of a Web Application On every interchange between client and server, server must: Parse request. Look up session state and global

More information

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS TIS HELP FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 TIE... 3 1.2 Account set up in TIS... 3 1.3 VAT number (EU only)... 3 1.4 Business license number (China only)... 3 1.5 Access levels...

More information

Web, HTTP and Web Caching

Web, HTTP and Web Caching Web, HTTP and Web Caching 1 HTTP overview HTTP: hypertext transfer protocol Web s application layer protocol client/ model client: browser that requests, receives, displays Web objects : Web sends objects

More information

Registrar- web Version February Registrar- web. Release 3.1. Copyright 2015 DNS Belgium vzw

Registrar- web Version February Registrar- web. Release 3.1. Copyright 2015 DNS Belgium vzw Registrar- web Version 3.1 5 February 2016 Registrar- web Release 3.1 Copyright 2015 DNS Belgium vzw Table of contents 1 Registrar Web... 3 1.1 User Management... 3 1.1.1 Permissions... 3 1.1.2 Transactions...

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