KIGO RA REST API Integration Guide

Size: px
Start display at page:

Download "KIGO RA REST API Integration Guide"

Transcription

1 KIGO RA REST API Integration Guide Revision 2 ( ) Kigo, Inc. 1

2 Contents Section Page 1. Introduction 3 2. Properties Overview Working with properties 6 3. Prices Overview Working with prices Availability and Reservations Overview Reservation constraints Working with reservations Other topics FAQ 20 Kigo, Inc. 2

3 Disclaimer Your company will need a competent IT department to integrate your system with Kigo API. Be aware that Kigo IT and Support departments will not check, revise, debug nor correct third-party code. Kigo Support canl only address high level questions and offer general guidelines. 1. INTRODUCTION KIGO RA REST API The Kigo Rental Agency API is a REST-like implementation based on the HTTP protocol, JSON data encoding and Unicode character encoding, over the secure HTTPS transport. Summary of capabilities (for an exhaustive list view section 9 API methods reference from RA REST API v1 specification) Search availability. Create, read, update and cancel confirmed reservations. (currently it is not possible to work with Inquiries, Hold dates and/or Canceled). Create, read and update properties. (currently it is not possible to add or edit properties). Read and update Property pricing ( Rent calculation in the Backoffice). Compute pricing for a set of dates and variables such as number of guests. Read user-defined fields and Kigo fields such as property types and fee types. Onboarding Once you sign up with Kigo, you will get a Kigo Rental Agency account with a Kigo ID, a username and a password. Every Kigo agency has a unique Kigo ID that identifies it. If you request API access, you will get API login credentials with the same username as in your Kigo account but a different, unique password. Kigo, Inc. 3

4 2. PROPERTIES 2.1. OVERVIEW For an API user, a property in Kigo has the following 2 main areas: Property information relates to all the basic information of the property such as its name, size, number of bedrooms, max guest capacity, etc. Property information in Kigo ( Properties -> Edit -> General ) Kigo, Inc. 4

5 Photos property pictures. Property photos in Kigo ( Properties -> Edit -> Photos ) PROPERTY OWNER A Kigo property will always be related to an owner, it is required by the system. Also, it is not possible to change the owner of a property. Owner in Kigo ( Owners ) Kigo, Inc. 5

6 OTHER CONSIDERATIONS Active vs Inactive Properties can be either active or inactive. They cannot be deleted. Only active properties will be accessible from the API. Properties in Kigo ( Properties ) 2.2. WORKING WITH PROPERTIES API Reference 9.2. Managing property owners listowners This method returns the list of property owners connected to the rental agency Kigo account readowner This method returns property owner information addowner This method adds a new owner connected to the rental agency Kigo account. It is required that the property owners be added to the system, either using the API or the application GUI, prior to adding the properties updateowner This method allows modifying a property owner Property owner information 9.3. Managing properties listproperties2 (Property information). This method returns the list of properties (both active and inactive) from the rental agency Kigo account. The method may be invoked periodically to keep your application's list of properties in sync with your Kigo account list of properties readproperty2 (Property information). This method returns property information readpropertyphotofile (Property photos). Kigo, Inc. 6

7 This method returns the binary content of a property JPEG photo file. You may invoke this method to retrieve new property photos discovered in a prior readproperty call.property photo files are immutable, and need to be downloaded only once listuserdefinedpropertyattributes (User-defined fields). This method returns the full list of user-defined property attributes defined in your Kigo Rental Agency account addproperty This method allows adding a new property to the Kigo rental agency account. Only properties provided by an owner (see 10.4 Property provider) may be added using this method updateproperty This method allows modifying property information. Property information that is synchronized with the provider account in the Kigo GUI shall no longer be synchronized after being updated by this method Property information Use-cases Property setup First of all get familiar with Kigo data structures for owner and property, Property owner information and Property information respectively. Every property needs to be linked to an owner, therefore the first has to be either to create an owner or to use an existing one. Use addowner if you wish to create a new owner. Use listowners and readowner to find an existing owner. Use addproperty to create a new property. Remember to pass the OWNER_ID from the previous step. Property synchronization 1. Synchronize property information [PREFERRED] Regardless of whether your solution has a content management user-interface, you want to synchronize all the property information from Kigo. This method is preferred because the user only has to introduce properties once: in their Kigo account. First you will need to grab all the property ids from listproperties and later on you will have to call readproperty for each one in order to fetch all the information. For photos you will have to download them all via readpropertyphotofile and upload them to your servers. Finally, if you want to synchronize user-defined property attributes as well, you will have to save the list of available fields for each user with listuserdefinedpropertyattributes. Kigo, Inc. 7

8 2. Map properties Your solution has a content management user-interface and you want the end-user to fill their property information with it, and just map a property from your system to a property in Kigo. You just need to use listproperties and associate each property ID in your system with Kigo s PROP_ID. 3. PRICES 3.1. OVERVIEW In Kigo we have 2 concepts related to pricing information: Display rates These can be found on the Property information section and are meant for information purposes only since they can only be approximate amounts, such as from 40 / night to 90 / night. Property display rates in Kigo ( Properties -> Edit -> General ) Rent calculation It englobes the different components and rules for calculating an actual price for a given check-in and check-out dates, among other variables such as number of guests. Nightly / weekly rates Rent amounts are introduced in this section. Kigo works with periods (from check-in date to check-out date). Each period can have a different structure, with rent prices varying by night of the week, number of guests and length of stay. In addition, there can also be weekly rental periods. Kigo, Inc. 8

9 Nightly / Weekly rates in Kigo ( Properties -> Edit -> Rent calculation ) Fees Fees are extra costs that can be added to the rent amount. They can be based on a percentage of rent, a fixed amount, on length of stay, and others. The available fees are provided by Kigo, that is, the user cannot add other fees than those present in the system. Fees can be included in the rent amount ( Include in rent checkbox), thus being included in the rent amount.. Kigo, Inc. 9

10 Fees rates in Kigo ( Properties -> Edit -> Rent calculation ) Discounts There are 3 types of discount available: Eary bird, Last minute and Special. Discounts in Kigo ( Properties -> Edit -> Rent calculation ) Kigo, Inc. 10

11 Deposit The agency can also set a damage deposit based on a fixed amount, % of rent or length of stay. Damage deposit in Kigo ( Properties -> Edit -> Rent calculation ) 3.2. WORKING WITH PRICES API Reference readproperty2 You will find display rates as PROP_RATE object ( ) readpropertypricingsetup This method provides the pricing setup (rent computation ingredients) for the specified property. The pricing setup may then be used for remote batch or real-time price computations, as an alternative or a complement to invoking the computepricing or computepricingbulk API methods in real-time diffpropertypricingsetup This methods enables the client system to maintain a local copy of the properties pricing setup by receiving information on new and modified pricing setups computepricing This method provides real-time rent, fees and deposit amounts and due dates computation, based on property pricing setup in your, or the property provider's, Kigo account computepricingbulk This method is a bulk alternative to the computepricing method. It allows processing multiple properties at once, thus significantly decreasing the number of API calls listkigofeetypes This method returns the list of fee types used in Kigo application Property pricing The property pricing setup is stored into an object holding the following members: CURRENCY, RENT, FEES, DISCOUNTS. Not all of them are always available. 11 Property pricing computation algorithm overview Kigo, Inc. 11

12 If your application is making pricing computations based on the property pricing setup such as provided by the readpropertypricingsetup and diffpropertypricingsetup API methods, then you might want to conform tothis computation algorithm overview. Use cases 1. Synchronize Kigo prices in your system [PREFERRED] First of all, you will need to get familiar with Kigo s API pricing structure in Property pricing. You will use readpropertypricingsetup to fetch all the pricing data and store it in your system. You need to update this regularly, which you can do with diffpropertypricingsetup. You have mainly two options: 1) map Kigo s pricing structure to your own system and use your own pricing algorithm, 2) leave Kigo s pricing structure as is and implement Kigo s computation algorithm, described in 11 Property pricing computation algorithm overview (this is, obviously, preffered). Advantages of price synchronization Performance and User experience Storing pricing details by yourself will result in a great improvement in performance. When you compute prices calling the API via computepricing or computepricingbulk, there is a noticeable delay for the user since your server has to wait until Kigo computes the pricing and replies to your call. This will obviously have an impact in the overall user experience and will be a disadvantage towards other portals which have synchronized prices and can compute them faster, without calling the API. Get more customers and properties Our Channel Manager connects agencies and property owners with more than 30 channels. One of the most important factors for them to decide what portals they want to work with is the friction of the connection process. Generally our clients expect to be able to manage everything directly from Kigo and the inability to do so will inevitably lead to a disappointment. In our experience, portals with a frictionless integration get more customers and hence more properties, as a direct result of being easier to connect. 2. Compute prices on search You need to use computepricingbulk to fetch actual rates on bulk for a given availability search. 3. Use Kigo prices to provide approximate rates on search and compute final prices at a later step You need to fetch Display rates via readproperty2 and store them in your database. When a customer performs a search you will show these rates. At a later step when the guest has pre-selected a property (this depends on your booking process), you will use computepricing to calculate the actual price of the booking. Kigo, Inc. 12

13 4. AVAILABILITY AND RESERVATIONS 4.1. OVERVIEW Reservations in Kigo can have 4 different status: Inquiry Inquiries do not block the availability calendar. A guest can make multiple inquiries for different properties on the same check-in and check-out dates and there can be multiple inquiries for the same property, check-in and check-out date. Pricing computation is not necessary. Inquiries are not accessible via API. Hold dates Hold dates block the availability calendar. Hold dates are accessible but cannot be created via API. Confirmed Confirmed reservations block the availability calendar. Only 1 confirmed reservation can exist for a given property, check-in and check-out dates. Confirmed reservations are accessible and can be created via API. Canceled All reservations regardless their status can be canceled. Canceled reservations are not accessible via API. In an API context reservations have 3 main sections: Reservation details This refers to basic details such as check-in and check-out dates, number of guests, guest information, and so on. Reservation details in Kigo ( Reservations -> Edit -> Reservation and guest details ) Kigo, Inc. 13

14 Payment details Payment details in Kigo ( Properties -> Edit -> Payment details ) Guest payments in Kigo have the following structure: 1. Rent down payment This is the amount the guest usually pays at reservation creation time. The amount is usually a marginal percentage, like 10%, but technically it could be any amount, even 100%. 2. Rent remaining payment This is obviously the total amount minus the rent down payment. 3. Fees Individual fees added to the final amount. Please note that fees can be included in rent, and they can have their own payment schedule (i.e. they can be paid together with the down payment, together with the rent remaining payment or in a separate payment). This fields will be automatically populated based on the Rent schedule defined in the user s Kigo Backoffice every time there is a new reservation. This means the API user generally does not have to worry about this structure. Nonetheless, these amounts can be read with updatereservation. This section was only added for completion. Kigo, Inc. 14

15 4.2. RESERVATION CONSTRAINTS Instant booking vs Owner contact first For each property in Kigo the user can choose if it can be booked online or not. This option is located in the Properties section in the Backoffice, under the column Instant booking : Properties in Kigo ( Properties ) From a user experience point of view Instant booking OK means the property can be booked online, while Contact owner first means it only accepts inquiries and the owner needs to confirm availability. However, please note that this setting is used for Kigo s templates feature and it has no limiting effect whatsoever in allowing online bookings to be made via API. Thus, createconfirmedreservation method *will ignore* this setting. The reason is we let it open for portals to implement their own workflow for booking Contact owner first properties. You need to decide whether you want to implement a special procedure or ignore these properties altogether. Minimum and maximum stay times In Kigo it s possible to limit reservations to a minimum and maximum number of nights for each property. It is possible to set a default min / max stay in the Property information section of each property: Kigo, Inc. 15

16 Then, in Rent calculation it is also possible to set a minimum stay time for each period. Maximum number of guests Finally it is also possible to restrict reservations to a maximum number of guests in Property information. Kigo, Inc. 16

17 4.3. WORKING WITH RESERVATIONS API Reference diffpropertycalendarreservations This methods enables the client system to maintain a local copy of the property availability calendar by receiving information on new, updated and canceled reservations that impact the property availability calendar, from three months back from the current date, and up to the very last reservation in the property calendar readreservation This method returns the details of a property reservation. Only reservations that belong to your Rental Agency Kigo account may be read createconfirmedreservation This method creates a new, confirmed property reservation updatereservation This method updates an existing property reservation. Only reservations that belong to your Rental Agency Kigo account may be updated cancelreservation This method cancels a property reservation. Only reservations that belong to your Rental Agency Kigo account may be canceled. Use cases 1. Availability search First of all you will need to call diffpropertycalendarreservations in order to receive the full availability calendar of all your properties. You have to save a local copy of this calendar and update it regularly (we recommend between 2 minutes to 4 hours). This method will also return a parameter called DIFF_ID. You need to store this value as well and send it as input every time you update your availability calendar via this method. This way you will only receive the new reservations which were created, updated or canceled after your last call. 2. Create a confirmed reservation You will use createconfirmedreservation each time you need to create a confirmed reservation. Please note that this method will not enforce any reservation constraints (see above, 4.2. Reservation constraints). Thus, before calling this method, you will need to make sure all the constraints have been checked. a) minimum and maximum stay times readproperty2 method will provide you with PROP_STAYTIME_MIN and PROP_STAYTIME_MAX readpropertypricingsetup method will provide you with STAY_MIN for each period. In case of conflict the highest minimum stay should prevail. Kigo, Inc. 17

18 b) maximum number of guests readproperty2 method will also provide you with PROP_MAXGUESTS, PROP_MAXGUESTS_ADULTS, and so on. c) Instant booking or Contact owner first API users should get this information via listproperties2 or readproperty2, in the PROP_INSTANT_BOOK parameter. After checking these constraints, now you should be able to call createconfirmedreservation safely. 3. Update and/or Cancel a reservation Simply call either updatereservation or cancelreservation with reservation id (RES_ID). If you want to update a reservation you will also send an object holding the new values. When updating reservations, keep in mind that reservation constraints are not taken into account. Kigo, Inc. 18

19 5. OTHER TOPICS KEEP PORTAL HISTORY Some Kigo agencies will already be portal users as well and they might not want to lose their history with the portal by creating a new account. This problem can be solved on the portal s side by matching the properties from the portal and Kigo. It could either be a manual process, or the portal could build an interface for their users to be able to do the matching. If you want to go for this second alternative you need to ask for the user s RA_ID (Rental agency identifier) which is their unique identifier in Kigo. Kigo, Inc. 19

20 6. FAQ Do I need to set up IP filters to access the API? No, this is just a possibility, but is not mandatory. It is a good security measure, though. We suggest not to do it during the development phase. Can I access the User Defined Property Attributes of properties other agencies share with mine? No. Not using the API and also not on your Kigo back office. You can only access your own User Defined Property Attributes. I cannot see my portal commission anywhere in Kigo s rent calculation information. Portal commission is not dealt with in the Kigo rent calculation. It needs to be calculated and dealt with in your own system. I can t find any method to create Hold dates. Correct. Kigo API doesn t currently support the creation of Hold dates, just confirmed reservations. Can I send and receive inquiries using Kigo s API? Unfortunately, at the present Kigo s API doesn t provide support for inquiries. How will I know when my provider / reseller agencies cancel or modify reservation on properties shared with me? The cancellations and modifications are not pushed to your system. Kigo never pushes any information through the API. As you will be controlling your properties availability calendars using diffpropertycalendarreservations, you will be made aware of all the cancellations and modifications on your next call to this method (i.e. every half hour at the shortest). Kigo, Inc. 20

There are many benefits when integrating directly to HomeAway.

There are many benefits when integrating directly to HomeAway. Lodgix has integrated directly to the HomeAway network of properties (including 17 international sites). An integration means that all single unit properties created on Lodgix can have listings created,

More information

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON WHO ARE THEY? WHERE ARE THEY STRONG? WHAT INFORMATION DO WE SEND TO THEM? Rent Private Villas is the leading agency in Cyprus, and are now expanding worldwide.

More information

Mobile for iphone User Guide

Mobile for iphone User Guide Version 2.5 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure

More information

NetSuite OpenAir Mobile for iphone User Guide Version 2.2

NetSuite OpenAir Mobile for iphone User Guide Version 2.2 NetSuite OpenAir Mobile for iphone User Guide Version 2 General Notices Attributions NetSuite OpenAir includes functionality provided by HighCharts JS software, which is owned by and licensed through Highsoft

More information

Stellarise Connector for Dynamics 365 and Xero. User Guide

Stellarise Connector for Dynamics 365 and Xero. User Guide Stellarise Connector for Dynamics 365 and Xero User Guide V3 What is Stellarise Connector for Dynamics 365 and Xero?... 3 What is new?... 4 How do you setup Stellarise Connector for Dynamics 365 and Xero?...

More information

Mobile for Android User Guide

Mobile for Android User Guide Version 1.7 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure

More information

Onboarding Your Account. A step-by-step guide

Onboarding Your Account. A step-by-step guide Onboarding Your Account A step-by-step guide Contents: Preparing your account in Vreasy Onboarding Managing your connection New reservation notifications Pricing sync Changing prices Seasonal price settings

More information

Empowering SMBs with Big Business Tools

Empowering SMBs with Big Business Tools Empowering SMBs with Big Business Tools August 2018 The Right Plan, For Every Business vcita s all-in-one business management solution offers a wide range of value-bringing features for SMBs. vcita includes

More information

PROFITEER USER MANUAL. A sophisticated Cost of Goods Sold App supporting all Shopify sales channels. Resistor Software Inc.

PROFITEER USER MANUAL. A sophisticated Cost of Goods Sold App supporting all Shopify sales channels. Resistor Software Inc. PROFITEER USER MANUAL A sophisticated Cost of Goods Sold App supporting all Shopify sales channels Resistor Software Inc. Contents 5 7 9 INTRODUCTION INSTALLATION INITIAL SETUP The Bootstrap Process...

More information

Government Tax Payment & Filing Service. User Guide

Government Tax Payment & Filing Service. User Guide Government Tax Payment & Filing Service User Guide Contents 3 Overview 3 Six important things to know: 4 Getting Started Users 4 Manage Payment Types 4 Add Payment Type 6 Edit Payment Type 7 Remove Payment

More information

ConnectWise-Sage 50 Accounts User Guide

ConnectWise-Sage 50 Accounts User Guide ConnectWiseSupport@mobiusworks.com www.mobiusworks.com ConnectWise-Sage 50 Accounts Version 3.0.0.7 September 11, 2015 Table of Contents Table of Contents... 2 INSTALLATION AND CONFIGURATION... 4 Introduction...

More information

HotelsPro.com. Frequently Asked Questions. HotelsPro.com. Frequently Asked Questions

HotelsPro.com. Frequently Asked Questions. HotelsPro.com. Frequently Asked Questions HotelsPro.com Frequently Asked Questions HotelsPro.com Frequently Asked Questions How to choose currency? Before performing a search, please select the currency from the top. Currently we offer 15 different

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Little Hotelier will connect you to guests around the world!

Little Hotelier will connect you to guests around the world! F R O N T D E S K + B O O K I N G E N G I N E + C H A N N E L M A N A G E R Little Hotelier will connect you to guests around the world! Everything you need to run your small property! Small properties

More information

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON WHO ARE THEY? Flat4Day is the largest network of vacation rentals, holiday homes, furnished apartments and villas in Europe, Turkey and the Middle East regions.

More information

Office 365 Timesheet Add-In (User manual)

Office 365 Timesheet Add-In (User manual) Office 365 Timesheet Add-In (User manual) By For further information, visit us at www.ignatiuz.com For support, contact us at support@ignatiuz.com Version:- V 2.5.0.0 Created: November 2nd, 2018 1 Table

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Table of Contents. HVAC Remote Manual 2010

Table of Contents. HVAC Remote Manual 2010 Table of Contents Installation and Upgrades Download of Remote Technician Program Installation of Remote Technician Program Update of Remote Technician Program Using the Update Program Getting Started

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of a ConnectWise Manage Login... 4 Configuration of GL Accounts...

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

ServicePRO + PartsPRO User Guide

ServicePRO + PartsPRO User Guide ServicePRO + PartsPRO User Guide ServicePRO Version 2.0 PartsPRO Version 1.0 Page 1 of 82 1 WHAT IS SERVICEPRO + PARTSPRO?... 4 1.1 What is ServicePRO?... 4 1.2 What are the benefits of using ServicePRO?...

More information

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON WHO ARE THEY? WHERE ARE THEY STRONG? WHAT INFORMATION DO WE SEND TO THEM? RentalsCombined.net was voted the Best Online Travel App at the Sabre Travel Technology

More information

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON

MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON MASTERS OF DISTRIBUTION HOW TO ADVERTISE ON WHO ARE THEY? Only Apartments is an online booking website focused purely on vacation rentals. They've been around since 2003 and boast 125,000 apartments in

More information

On-Demand Solution Planning Guide

On-Demand Solution Planning Guide On-Demand Solution Planning Guide Powering On-Demand Solutions www.growthclick.com hello@growthclick.com Copyright 2019 GrowthClick Inc. All Rights Reserved. 1 3 Steps to Planning an On-Demand Solution

More information

Cellcom Fleet. Android User Guide

Cellcom Fleet. Android User Guide 1 Cellcom Fleet Android User Guide 2 Welcome to Cellcom Fleet! Welcome to the Cellcom Fleet Android user guide! This guide will provide information users will need to successfully set up and use the Cellcom

More information

HealthEquity Employer Portal Guide HealthEquity All rights reserved.

HealthEquity Employer Portal Guide HealthEquity All rights reserved. HealthEquity Employer Portal Guide 2013-2015 HealthEquity All rights reserved. INTRODUCTION 09 ACCESSING PENDING PAYMENTS 01 LOGIN PROCESS 09 MODIFYING EMPLOYER INFORMATION 01 ADDING INSURANCE INFORMATION

More information

WAREHOUSE SUPPORT SITE

WAREHOUSE SUPPORT SITE WAREHOUSE SUPPORT SITE TUTORIAL NORTH AMERICA // EUROPE // +353 (0) 61 708533 AUST?RALIA // +61 2 8003 7584 THANK YOU Thank you for choosing B2BGateway for your warehousing EDI needs We are proud to have

More information

Copyright Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3

Copyright Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3 Copyright 1999-2017 Basware Corporation. All rights reserved.. Vendor Portal User Guide Basware P2P 17.3 Table of Contents 1 Vendor Portal Registration... 4 1.1 Register for Vendor Portal...4 2 Vendor

More information

Exact Synergy Service Management. User Guide

Exact Synergy Service Management. User Guide Exact Synergy Service Management User Guide Exact Synergy Service Management Despite the continued efforts of Exact to ensure that the information in this document is as complete and up-to-date as possible,

More information

After logging into PrintGizmo create your profile and complete the information requested by navigating the menu to Configuration > Profile.

After logging into PrintGizmo create your profile and complete the information requested by navigating the menu to Configuration > Profile. Printer Guide Quick Start Guide Step 1: Setup your Profile See Profile under Configuration After logging into PrintGizmo create your profile and complete the information requested by navigating the menu

More information

System Secureholiday.net 5.0. On-line booking On-line Availabilities. User Guide

System Secureholiday.net 5.0. On-line booking On-line Availabilities. User Guide System Secureholiday.net 5.0 On-line booking On-line Availabilities User Guide English Version Updated: October 2014 Table of contents 1 Connection to the user interface 2 2 Description of establishment

More information

Microsoft Dynamics GP. Personal Data Keeper

Microsoft Dynamics GP. Personal Data Keeper Microsoft Dynamics GP Personal Data Keeper Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Ariba Network Online Invoice Guide

Ariba Network Online Invoice Guide Ariba Network Online Invoice Guide Introduction Regions Financial Corporation Specifications Your Ariba Network Account Invoices Accessing Your Account Account Navigation Account Configuration Settlement/Remit-To

More information

Advanced Scheduling Introduction

Advanced Scheduling Introduction Introduction The Advanced Scheduling program is an optional standalone program that works as a web site and can reside on the same server as TimeForce. This is used for the purpose of creating schedules

More information

HSA EMPLOYER RESOURCE GUIDE. Fifth Third Bank Health Savings Account

HSA EMPLOYER RESOURCE GUIDE. Fifth Third Bank Health Savings Account HSA EMPLOYER RESOURCE GUIDE Fifth Third Bank Health Savings Account Contents Welcome 3 Your Fifth Third Bank HSA Implementation Checklist 4 Your HSA Maintenance Checklist 7 Customer Service Information

More information

BlackBerry User Guide

BlackBerry User Guide Version 1.0 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure

More information

Effective Tours. Tour Agents and Tour Operators Manual

Effective Tours. Tour Agents and Tour Operators Manual Effective Tours Tour Agents and Tour Operators Manual Ver. 1.01 10/10/2013 Getting started with Effective Tours (ET) Effective Tours is a unique application, developed in association with a tourist operators

More information

Online Billing Guide. s Delta Dental of Virginia 4818 Starkey Road, Roanoke, VA Fax: DeltaDentalVA.

Online Billing Guide. s Delta Dental of Virginia 4818 Starkey Road, Roanoke, VA Fax: DeltaDentalVA. Online Billing Guide Welcome to Delta Dental of Virginia s online billing. The updates we have made to our online billing system is intended to streamline functions such as: managing employee information,

More information

NetSuite OpenAir/NetSuite Connector Guide April

NetSuite OpenAir/NetSuite Connector Guide April NetSuite OpenAir/NetSuite Connector Guide April 16 2016 General Notices Attributions NetSuite OpenAir includes functionality provided by HighCharts JS software, which is owned by and licensed through Highsoft

More information

Supply Chain Portal. Supplier Manual.

Supply Chain Portal. Supplier Manual. Supplier Manual Supply Chain Portal Supplier Manual https://supplychainportal.action.eu/ All rights reserved. No part of this paper may be reproduced, stored in a database or retrieval system, or published,

More information

MSI Accounts Payable Version 7.5

MSI Accounts Payable Version 7.5 MSI Accounts Payable Version 7.5 User s Guide Harris Local Government 1860 W. Winchester Road, Ste 204 Libertyville, IL 60048 Phone: (847) 362-2803 Fax: (847) 362-3347 Contents are the exclusive property

More information

System Guide for Board Recognised Employers of Electrical Workers

System Guide for Board Recognised Employers of Electrical Workers System Guide for Board Recognised Employers of Electrical Workers Version 1.3, March 2017 Contents 1 Introduction to this Guide 3 2 Overview 4 Roles within the portal system 4 Functions within the portal

More information

Fairsail Collaboration Portal: Guide for Users

Fairsail Collaboration Portal: Guide for Users Fairsail Collaboration Portal: Guide for Users Version 11 FS-HCM-CP-UG-201504--R011.00 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

DHL Shipping for Magento 2

DHL Shipping for Magento 2 DHL Shipping for Magento 2 The module DHL Shipping for Magento 2 enables merchants with a DHL account to create shipments and retrieve shipping labels. The module supports the following webservices: DHL

More information

Sage 100. Sage Payroll Services Getting Started Guide

Sage 100. Sage Payroll Services Getting Started Guide Sage 100 Sage Payroll Services Getting Started Guide This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service

More information

WELCOME TO SANTANDER TREASURY LINK

WELCOME TO SANTANDER TREASURY LINK WELCOME TO SANTANDER TREASURY LINK You are on your way to experiencing a customizable and central hub from which to effectively manage your company s finances. To ensure you have a positive first experience

More information

BillQuick MYOB Integration

BillQuick MYOB Integration Time Billing and Business Management Software Built With Your Industry Knowledge BillQuickMYOB Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

User Manual. Acumatica - Magento Connector

User Manual. Acumatica - Magento Connector User Manual Acumatica - Magento Connector Connector Version: 2.2 Supported Acumatica Version: 6.0 Supported Magento Versions: CE 2.1.X and EE 2.1.X Kensium Solutions PHONE 877 KENSIUM (536 7486) FAX 312

More information

Your expert guide to earning rental income. Getting started is easy with our professional tips and advice.

Your expert guide to earning rental income. Getting started is easy with our professional tips and advice. Your expert guide to earning rental income Getting started is easy with our professional tips and advice. 1 Join thousands of happy owners on HomeAway... 1 Deciding to rent...2 Is my property right for

More information

ibex Rentals Agent Guide

ibex Rentals Agent Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

R7 MEMBER USER GUIDE

R7 MEMBER USER GUIDE 1 R7 MEMBER USER GUIDE CONTENTS CLICK ON ANY OF THE SECTION TITLES BELOW TO GO TO THAT SECTION Welcome!... 2 Getting Started... 2 Internal Member Benefits... 4 External Member Benefits... 5 Frequently

More information

General Ledger Table of Contents. Accounts Overview General Journal Entries Overview Jobs Overview

General Ledger Table of Contents. Accounts Overview General Journal Entries Overview Jobs Overview General Ledger Table of Contents Accounts Overview General Journal Entries Overview Jobs Overview Analyzing your job activity To analyze your job activity Assigning transactions to jobs Tip #1: Look for

More information

Morningstar Direct SM Performance Reporting

Morningstar Direct SM Performance Reporting Performance Reporting is specifically designed to monitor the performance of investments organized into groupings based on your own custom classifications. You can assign benchmarks, define data, and perform

More information

STAAH. How to connect to Airbnb

STAAH. How to connect to Airbnb STAAH How to connect to Airbnb Where to enable connection? Login to Instant extranet > Instant > Channel Mapping Select Airbnb Content Click on drop down arrow and select Airbnb Content Airbnb Content

More information

Editing an Existing Account on an Invoice Payment Creating a New Account on an Invoice Payment... 47

Editing an Existing Account on an Invoice Payment Creating a New Account on an Invoice Payment... 47 ebilling User Guide Table of Contents About This Guide Chapter 1 ebilling Basics... 6 Getting Started with ebilling... 6 Logging into ebilling... 6 Working with the ebilling Home Page... 8 Updating Your

More information

MEMBER USER GUIDE or

MEMBER USER GUIDE or 1 MEMBER USER GUIDE CONTENTS CLICK ON ANY OF THE SECTION TITLES BELOW TO GO TO THAT SECTION Welcome!... 2 Getting Started... 2 Internal Member Benefits... 4 External Member Benefits... 5 Frequently Asked

More information

Invoice Manager Admin Guide Basware P2P 17.3

Invoice Manager Admin Guide Basware P2P 17.3 Invoice Manager Admin Guide Basware P2P 17.3 Copyright 1999-2017 Basware Corporation. All rights reserved.. 1 Invoice Management Overview The Invoicing tab is a centralized location to manage all types

More information

What you can do on THC.com

What you can do on THC.com What you can do on THC.com FOLLOW: Follow your favorite Cannabis influencers for news and information to stay in the know. SELL / ENDORSE: Easily sell through the Store or endorse other products for a

More information

PAYLOCITY RELEASE HIGHLIGHTS Client Resource

PAYLOCITY RELEASE HIGHLIGHTS Client Resource JUNE 2016 PAYLOCITY RELEASE HIGHLIGHTS Client Resource WWW.PAYLOCITY.COM HR INSIGHTS CHARTS Updated HR Insights & Headcount Trends Dashboards provide faster load times and a simplified filter experience.

More information

A SIMPLER WAY TO SHIP. Instant Quotes Anytime, Anywhere. mytnt 2 Online Shipping User Guide

A SIMPLER WAY TO SHIP. Instant Quotes Anytime, Anywhere. mytnt 2 Online Shipping User Guide A SIMPLER WAY TO SHIP Instant Quotes Anytime, Anywhere mytnt 2 Online Shipping User Guide 02 Welcome to mytnt 2 Online Shipping Tool! Easy Get started with just an email address & password Fewer steps

More information

OroTimesheet User Guide

OroTimesheet User Guide OroTimesheet User Guide www.orotimesheet.com Copyright 1996-2018 OroLogic Inc. Revision 8.57.0 Table des matières I Contents Contents...I OroTimesheet User Guide...1 Presentation...1 Starting off on the

More information

SANTANDER TREASURY LINK TRANSITION GUIDE

SANTANDER TREASURY LINK TRANSITION GUIDE SANTANDER TREASURY LINK TRANSITION GUIDE Introduction Introducing Santander Treasury Link for Online Banking A new experience ahead We are pleased to introduce you to Santander Treasury Link and look forward

More information

This document is for resellers only. Please do not distribute to customers.

This document is for resellers only. Please do not distribute to customers. This document is for resellers only. Please do not distribute to customers. Overview The following information documents in detail the 123Pet features and supporting screen shots. The purpose of this information

More information

Deltek Touch for Maconomy. Touch 2.2 User Guide

Deltek Touch for Maconomy. Touch 2.2 User Guide Deltek Touch for Maconomy Touch 2.2 User Guide July 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

DHL Shipping for Magento 2

DHL Shipping for Magento 2 DHL Shipping for Magento 2 The module DHL Shipping for Magento 2 enables merchants with a DHL account to create shipments and retrieve shipping labels. The module supports the following webservices: DHL

More information

RELEASE NOTES. Practice Management. Version 11

RELEASE NOTES. Practice Management. Version 11 RELEASE NOTES Practice Management Version 11 Author Created and Published by Reckon Limited Level 7, 65 Berry Street North Sydney NSW 2060 Australia ACN 003 348 730 All Rights Reserved Copyright 2015 Reckon

More information

Sage Payroll Integration

Sage Payroll Integration Sage Payroll Integration Version 1.0 06/11/2017 Author(s): Sukhjinder Singh Contents Table of Contents Contents... 2 1. About This Integration... 3 2. Installation and Configuration... 4 2.1 Downloading

More information

INDEX. Misc News 17 Reports next Fees and Payments 20

INDEX. Misc News 17 Reports next Fees and Payments 20 User Manual I INDEX PG # Getting Started 3 Logging In 3-4 Setting up your Profile 4 Sub Agents 5-6 Creating an Agents Profile 7 Markups 7 Dashboard 8 Queue Summary 8 Making a Booking 9 +- 3day Search 10

More information

Managing customers is important and TAM CRM helps in several ways:

Managing customers is important and TAM CRM helps in several ways: TAM CRM is complete Customer Relationship Management software that is a great fit for almost any company, freelancer or many other uses. With its clean and modern design, TAM CRM can help you look more

More information

DSV XPress. Customer User Guide. 1 DSV XPress (Version: )

DSV XPress. Customer User Guide. 1 DSV XPress (Version: ) DSV XPress Customer User Guide 1 DSV XPress (Version: 31-01-2017) Content 1.0 Start... 3 2.0 Log-in... 3 2.1 Reset and change your password... 3 3.0 Home Screen... 4 4.0 Shipment Entry... 5 4.1 Shipping-

More information

USER MANUAL. MageMob Inventory TABLE OF CONTENTS. Version: 1.0.1

USER MANUAL. MageMob Inventory TABLE OF CONTENTS. Version: 1.0.1 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of MageMob Inventory...1 Installation & Activation...2 Extension Activation...7 How it Works?...8 Back End Configuration...8 Points to Note... 37

More information

Checking Pay History Your pay stub is available through the employee portal on each pay day. It remains available through your Pay History tab.

Checking Pay History Your pay stub is available through the employee portal on each pay day. It remains available through your Pay History tab. Using the Employee Portal Log in to the employee portal, employees.tiu11.org ID: first initial full last name last two digits of SSN, all lower case letters, no spaces Initial Password: last four digits

More information

Contents OVERVIEW... 3 CONFIGURATION... 4

Contents OVERVIEW... 3 CONFIGURATION... 4 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

OSP / QuickBooks Web Connector Setup

OSP / QuickBooks Web Connector Setup OSP / QuickBooks Web Connector Setup Overview The OrderStream Pro Business Manager can be integrated in real time with QuickBooks Financial Software. Key data flows automatically between applications as

More information

Pepperi Plugin for SAP Business One

Pepperi Plugin for SAP Business One Pepperi Plugin for SAP Business One April. 2015 Ver 1.1 Contents 1 Introduction...4 1.1 System Requirements... 4 1.2 Glossary... 4 2 System Architecture...5 3 Overview...6 3.1 Installation and Setup...

More information

Bridge. Billing Guide. Version

Bridge. Billing Guide. Version Bridge Billing Guide Version 2.5.112 Table of Contents Page i Table of Contents Table Of Contents I Introduction 2 Managing Bill To Parties 3 Creating a New Bill to Party 3 Viewing and Navigating Bill

More information

TimeKeeper Training. SIGNING INTO V6 PAYROLL MODULE Select Payroll and enter your User Name and Password and then click Sign In.

TimeKeeper Training. SIGNING INTO V6 PAYROLL MODULE Select Payroll and enter your User Name and Password and then click Sign In. SIGNING INTO V6 PAYROLL MODULE Select Payroll and enter your User Name and Password and then click Sign In. ALERTS SETUP Select Alerts Setup from the TimeKeeper dropdown menu. This is where you set up

More information

The Guide to Consolidated Billing

The Guide to Consolidated Billing The Guide to Consolidated Billing Business Catalyst The Guide to Consolidated Billing 1 1. The Guide to Consolidated Billing 1a. Introduction The new Consolidated Billing feature is designed to help premium

More information

Renting your vacation home. Your guide to getting started

Renting your vacation home. Your guide to getting started Renting your vacation home Your guide to getting started Table of contents Welcome...3 Deciding to rent...4 How involved do you want to be?...5 Where do you put your personal belongings?...6 What are the

More information

BAYPORT BUSINESS ONLINE BANKING USER GUIDE TABLE OF CONTENTS

BAYPORT BUSINESS ONLINE BANKING USER GUIDE TABLE OF CONTENTS BAYPORT BUSINESS ONLINE BANKING USER GUIDE TABLE OF CONTENTS ADD/MANAGE BUSINESS USERS Add a user 3 Modify account specific access 4 Set access for all accounts 7 Steps to approve a user 8 Set transaction

More information

HotelsPro.com. Frequently Asked Questions. HotelsPro.com. Frequently Asked Questions

HotelsPro.com. Frequently Asked Questions. HotelsPro.com. Frequently Asked Questions HotelsPro.com Frequently Asked Questions HotelsPro.com Frequently Asked Questions How to choose currency? Before performing a search, please select the currency from the top. Currently we offer 15 different

More information

Before continuing it is important the reader understands the key differences between Mobipaid and other forms of mobile payments :

Before continuing it is important the reader understands the key differences between Mobipaid and other forms of mobile payments : Mobipaid - User Guide Introduction to Mobipaid Welcome to Mobipaid where taking card payments from customers has never been easier. For the first time, any Business, Sole Trader, Non-profit Organization,

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS Q. Why is the current Pricing System changing? In response to your feedback we are launching a new Property Pricing System making it easier for you to maintain and update your

More information

Welcome to the course on the initial configuration process of the Intercompany Integration solution.

Welcome to the course on the initial configuration process of the Intercompany Integration solution. Welcome to the course on the initial configuration process of the Intercompany Integration solution. In this course, you will see how to: Follow the process of initializing the branch, head office and

More information

V9 Jobs and Workflow Administrators Guide DOCUMENTATION. Phone: Fax:

V9 Jobs and Workflow Administrators Guide DOCUMENTATION. Phone: Fax: V9 Jobs and Workflow Administrators Guide DOCUMENTATION Phone: 01981 590410 Fax: 01981 590411 E-mail: information@praceng.com CHANGE HISTORY ORIGINAL DOCUMENT AUTHOR: MICHELLE HARRIS DATE: APRIL 2010 AUTHOR

More information

Hotel IT CHAM Manual. User Guide. Online Hotel channel management System. Hotel IT Solution 1

Hotel IT CHAM Manual. User Guide. Online Hotel channel management System. Hotel IT Solution 1 Hotel IT CHAM Manual User Guide Hotel IT CHAM Online Hotel channel management System 1 On Successful login in to Hotel IT CHAM, the very first screen that will appear is the Dashboard view of your Hotel

More information

IMPORTANT MEMBERSHIP FEATURES & BENEFITS

IMPORTANT MEMBERSHIP FEATURES & BENEFITS 2019 UPDATE IMPORTANT MEMBERSHIP FEATURES & BENEFITS 1 setting up your logins step 1: how to access club information The most up-to-date club information can be accessed anytime through your exclusive

More information

Listing Quality. The key to succeed in best match

Listing Quality. The key to succeed in best match Listing Quality The key to succeed in best match Search results matter to both travellers and property managers. That s where best match comes in. Travellers expect to find their ideal property quickly,

More information

User Guide. Introduction. What s in this guide

User Guide. Introduction. What s in this guide User Guide TimeForce Advanced Scheduling is the affordable employee scheduling system that lets you schedule your employees via the Internet. It also gives your employees the ability to view and print

More information

Connect Facts. Eligibility / Target Users. Benefits For Hotels. Data Security Issues. Hotel Registration. Forecast Publishing.

Connect Facts. Eligibility / Target Users. Benefits For Hotels. Data Security Issues. Hotel Registration. Forecast Publishing. Table of Contents Connect Facts Eligibility / Target Users Benefits For Hotels Data Security Issues Hotel Registration Forecast Publishing Request Handling ebook / Distribution Links / Downloads Contact

More information

Integration Manual Valitor NetSuite Module

Integration Manual Valitor NetSuite Module Integration Manual Valitor NetSuite Module Integrating with Valitor could not be easier. Choose between Hosted, HTTP POST or XML integration options, or alternatively browse our selection of client libraries

More information

JOIN A CORPORATE TEAM

JOIN A CORPORATE TEAM Team Captain On-Line Team Management Guide The Marcum Workplace Challenge is using a new and improved system this year to help Team Captains manage their teams better. This Guide is meant to help show

More information

Employer Portal Quick Start Guide-Tax Advantaged Plans

Employer Portal Quick Start Guide-Tax Advantaged Plans Benefit Extras, Inc. P.O. Box 1815 Burnsville, MN 55337 Phone: (952) 435-6858 (Toll-free 1-866-435-6858) Fax: (952) 435-8435 (Toll-free 1-800-886-8793) www.benefitextras.com Employer Portal Quick Start

More information

Table of content Register new account... 3 Account settings... 5 Add New Complex (Hotel structure) on BeeRent... 7 Add New Supplier...

Table of content Register new account... 3 Account settings... 5 Add New Complex (Hotel structure) on BeeRent... 7 Add New Supplier... STEP BY STEP As easy as it looks, BeeRent is your central reservation platform where you manage all your properties and all sales channels at one place. Instead of logging into sales channel extranets,

More information

EMPLOYER PORTAL QUICKSTART GUIDE

EMPLOYER PORTAL QUICKSTART GUIDE EMPLOYER PORTAL QUICKSTART GUIDE Welcome to Kabel s Employer Portal. This one-stop portal gives you the tools you need to better support your employees in the management of their pre-tax benefit plans

More information

Getting started. Ongoing Warehouse AB Phone +46(0) Web Head Office: Övre Buråsliden 20, SE Göteborg

Getting started. Ongoing Warehouse AB Phone +46(0) Web   Head Office: Övre Buråsliden 20, SE Göteborg Getting started This is a step-by-step manual to get started with Ongoing Warehouse. It describes the basics of the system and will guide you through a number of tasks in purpose to get you familiar with

More information

Promotions API: Handbook for Providers & Channel Managers. Name Presenter Date

Promotions API: Handbook for Providers & Channel Managers. Name Presenter Date Promotions API: Handbook for Providers & Channel Managers Name Presenter Date Promotions : Create more business when needed! Promotions are self-managed discounted offers and deals which properties can

More information

Enterprise by HansaWorld Resource Planner

Enterprise by HansaWorld Resource Planner Enterprise by HansaWorld Resource Planner Version 7.2 Mac OS October 2014 Table of Contents THE RESOURCE PLANNING MODULE...3 Settings...3 Display Groups...3 Invoice Items...4 Number Series Reservations...4

More information

Amadeus Hotel Store. User guide 16 March Taking hotel consolidator content to a new level with Transhotel

Amadeus Hotel Store. User guide 16 March Taking hotel consolidator content to a new level with Transhotel Amadeus Hotel Store User guide 16 March 2009 Taking hotel consolidator content to a new level with Transhotel Index Amadeus Hotel Store is now open for business!...3 Technical requirements...3 Log-in...4

More information

YOUR GUIDE TO. Version 1.0. Not FDIC Insured May Lose Value No Bank Guarantee

YOUR GUIDE TO. Version 1.0. Not FDIC Insured May Lose Value No Bank Guarantee YOUR GUIDE TO Version 1.0 Not FDIC Insured May Lose Value No Bank Guarantee TABLE OF CONTENTS What is Spryng TM? 1 Who s Who 2 Getting Started 3 Setting Up a Spryng Profile 7 Manage Your Spryng Profile

More information