Rezdy API for suppliers

Download OpenAPI specification:Download

The Rezdy Supplier API allows querying availability, products, make and retrieve bookings, and much more for your own supplier account.

Introduction

Since the API is based on REST principles, it's very easy to write and test applications. You can use your browser to access URLs, and you can use pretty much any HTTP client in any programming language to interact with the API. Features

  • REST API
  • Supports JSON for requests and responses
  • Simple data model
  • Secured by SSL and API Key
  • Fast and highly available, hosted on Amazon Web Services

Do you need an API?

APIs are designed for programmers, so if you don't speak any computer language, we have solutions that should be easier for you to use. Rezdy provides a range of plugins for you to integrate on your website, that don't involve using our API directly. To learn more, check the integration plugins available in your Rezdy account, or read this overview of our iframe plugins

Integration partners

If you'd like to build a new service around Rezdy's software, require additional APIs, or would like Rezdy to directly integrate with your company's software, get in touch with our team so we can review your project and discuss its feasibility.

Rezdy APIs

Rezdy offers different API products for different types of businesses. Make sure to choose the right one for your needs.

Rezdy API for agents

REST API for Rezdy agents and OTAs (online travel agents), providing functionality to resell suppliers products, including pulling shared products, availability and pricing from Rezdy, and pushing bookings and cancellations to Rezdy.

Rezdy API for agents specification

Rezdy API for suppliers

REST API for suppliers using Rezdy Booking Software provides functionality to manage their Rezdy inventory and booking capabilities.

Rezdy API for suppliers specification

RezdyConnect (RC)

The RezdyConnect API powers the supply side of the Rezdy Channel Manager tool. The API is designed for suppliers using other ticketing systems, allowing them to import and resell their products through Rezdy’s connected channels. Rezdy pulls availability and pricing, and pushes bookings and cancellations to the supplier’s booking system.

RezdyConnect specification

Rezdy Webhooks

Webhooks allow 3rd party applications to be notified or updated when certain events happen on Rezdy, by sending data to configured URLs.

Webhooks specification

Overview

Specification format

This specification is built upon OpenAPI Specification version 3.0.x.

The examples in the text as well as request and response payloads, use preset data in Rezdy staging environment, and demo accounts with special read-only API Keys:

  • a supplier account API specification demo supplier with API key 5f4b36ff169047a4a5682cba7e07fea4
  • an agent account API specification demo agent with API key 69f708868ddc45eaa1f9b9fad1ddeba5

You can use the accounts to try any GET calls, however, POST, PUT and DELETE methods are blocked for this API key to preserve the data and will result in the following error

{
    "requestStatus": {
        "success": false,
        "error": {
            "errorCode": "6",
            "errorMessage": "Client not authorised"
        }
    }
}

Versioning

Rezdy API is versioned and you must include the version in the URL you're calling. Our API is actively updated within the same version, but these are non-breaking changes and therefore the version will not be updated. We will increase the version for any major breaking change.

Please check the changelog for details of changes.

We are currently on v1 of the Rezdy API. If, for example, you were accessing the Products endpoint, the URl should be structured as:

https://api.rezdy.com/v1/products

You can also use /latest/ to automatically use the latest available version:

https://api.rezdy.com/latest/products

Environments

We have Staging and Production environment. Use the Staging environment to test your integration to make sure it is ready before connecting to the Production environment. Calls to the Rezdy Staging environment include payment processing through payment gateways are done against third-party sandbox environments.

Production and Staging environments are currently completely disconnected, accounts and other data are not replicated, thus you need to create a new account and generate a new API key for each environment.

Environment Application URL API URL API Documentation URL
Staging https://app.rezdy-staging.com https://api.rezdy-staging.com https://developers.rezdy-staging.com
Production https://app.rezdy.com https://api.rezdy.com https://developers.rezdy.com

We release new updates to the Staging environment approximately one week before they are released to production, so there may be differences. These differences will be represented in the documentation available for each environment as outlined above. Check the changelog for details.

For simple integrations, it is easier to test using the production environment, booking only Test products from our Rezdy Agent Certification supplier.

On the Staging environment, you can activate our test supplier account with credit card number 4242424242424242 which will prevent the account from expiring due to the trial ending.

Security

All requests must use HTTPS, the API is not available on non-SSL/TLS ports.

We do not allow Cross-Origin Resource Sharing (CORS), REST calls to Rezdy API should not be made directly from a browser.

All API calls require a valid API Key. It must be passed as a query parameter or HTTP header, with all requests, using the following format:

GET https://api.rezdy.com/v1/products?apiKey=XXXXXXXXXXXXXXXXXXXX

or

GET https://api.rezdy.com/v1/products

HTTP headers:
apiKey: XXXXXXXXXXXXXXXXXXXX

To obtain your API Key, please log in to your Rezdy Booking Software and send a request by going to the menu item Integrations > Rezdy API > Request API Key. If you do not see this menu item, please contact support@rezdy.com

Keep API key confidential and do not publish it to any publicly available repository in a version control system. Malicious bots are frequently scanning for such vulnerabilities.

Payload format

Media Types

The Rezdy API supports UTF-8 encoded JSON payload. You must include both Accept and Content-Type headers to your requests as follows:

Content-Type: application/json; charset=UTF-8
Accept: application/json

Response format

All responses will contain a "requestStatus" element. That element will tell you if your request was successful and may contain error or warning messages.

Successful request:

{
 "requestStatus": {
  "success": true,
  "version": "v1"
 }
}

Request with error:

{
 "requestStatus": {
  "success": false,
  "error": {
   "errorCode": "6",
   "errorMessage": "Invalid API Key"
  }
 }
}

Pagination

Requests that return multiple items are paginated to 100 items by default. You can control pagination by using the offset (default:0) and limit (default: 100) query parameters. The custom limit may not exceed 100, except for specific endpoints if mentioned in their description.

For example:

GET /products?offset=0&limit=100
GET /products?offset=100&limit=100
GET /products?offset=200&limit=100

Dates format

There are 2 date formats in our API model.

The first one is ISO8601 format, and typically fields such as startTime, endTime, dateCreated, dateUpdated are formatted this way.

The other one is a supplier's localized date format, which is based on a supplier's timezone setup on Rezdy. Typically, used by fields startTimeLocal/endTimeLocal.

How to use them in API requests

These two types are mostly exposed in pairs in the payloads or query parameters as startTime & startTimeLocal or endTime & endTimeLocal. For better convenience, you can choose which format to use. General rules of thumb are:

  1. If a start time is required, at least one of the parameters startTime or startTimeLocal have to be specified. Similarly, for other date fields.
  2. If both parameters startTime and startTimeLocal are specified in the request, the startTime has a higher priority, startTimeLocal will be simply ignored. Similarly, for other date fields.

Local format

Local format does not contain timezone information, the format is yyyy-MM-dd HH:mm:ss, e.g.:

2014-10-30 09:00:00

Using local date format is recommended, as there is no need to do any timezone conversions when displaying data such as local tour start time to an end user.

ISO8601 format

If you use ISO8601 format, you have to convert times to the supplier’s timezone when you want to display dates and times for a tour. For example, if a supplier runs a tour on 30 Oct 2014 at 9:00 AM in the “Sydney/Australia” timezone, time in ISO8601 format returned by the API will be:

2014-10-29T22:00:00Z

That’s because 2014-10-29T22:00:00Z is the same time as 2014-10-30T09:00:00+11:00. You can send any of these formats in your API calls and they’re both valid and both represent the same timestamp.

You can retrieve the supplier’s timezone in GET /products calls (Product.timezone). Please be mindful of Daylight Savings Time when converting timestamps. You should always use the proper timezone (i.e. Australia/Sydney) instead of the time offset (+10:00) because the latter can vary during the year (i.e. Sydney is +10:00 in winter and +11:00 in summer)

Rate Limit

API use is restricted to 100 calls per minute, per API Key. We may alter this limit based on usage patterns. If you reach your limit, you will receive an HTTP Status 406 response with message "Too Many Requests".

Caching

To provide the best experience to your customers and to avoid hitting the rate limits, you should implement some form of caching on your end rather than calling the Rezdy API for each request. For example, a typical browsing + booking process could follow this caching strategy:

Customer action on your website Rezdy API Call Caching recommendation
Browse product 1 GET /products/{product1} Cache for 24+ hours
Check product 1 availability GET /availability Cache for 24 hours
Browse product 2 GET /products/{product2} Cache for 24+ hours
Check product 2 availability GET /availability Cache for 24 hours
Add product 2 to shopping cart – Starts checkout GET /availability No Cache – confirms product is still available
Completes checkout POST /bookings No Cache

Error codes

The following error codes can be returned in the requestStatus object

Error code Meaning Details
1 UNKNOWN Indicates an unknown error.
2 NO_IMPLEMENTATION Indicates that the target API has no implementation for the request.
3 BIZ_RULE Indicates that the message has passed a low-level validation check, but that the business rules for the request message were not met.
4 AUTHENTICATION Indicates that credentials are invalid
5 AUTHENTICATION_TIMEOUT Indicates that the security credentials in the message have expired
6 AUTHORIZATION Indicates that credentials are valid but not enough permissions to execute that call
7 PROTOCOL_VIOLATION Indicates that a request was sent within a message exchange that does not align to the message
8 TRANSACTION_MODEL Indicates that the target business system does not support the intended transaction-oriented operation
9 AUTHENTICAL_MODEL Indicates the type of authentication requested is not recognized
10 MISSING_FIELD Indicates that an element or attribute that is required in by the schema (or required by agreement between trading partners) is missing from the message
11 AUTOMATED_PAYMENTS_PRICE_
TOO_LOW_TO_COVER_FEES
Indicate that automated payment booking failed
12 AUTOMATED_PAYMENTS_PRICE_
TOO_LOW_FOR_AGENT_COMMISSION
Indicate that automated payment booking failed
13 PAYMENT_CARD_TYPE_DECLINED Indicate that the card type is invalid
14 PAYMENT_CARD_TYPE_REJECTED Indicate that the card type is invalid
15 PAYMENT_ERROR Indicate that payment information is invalid
16 SINGLE_ORDER_LINE_ITEM_
ALLOWED
Indicate that only a single item per order can be booked for this supplier
17 PAYMENT_REQUIRED_SCA_
ACTION
Indicates that the payment should be completed performing strong customer authentication (SCA)
18 MINIMUM_QUANTITY_REQUIRED Indicate that quantities are less than the minimal requirement
19 MAXIMUM_QUANTITY_REACHED Indicate that quantities are higher than the maximum requirement
20 DOWNSTREAM_ERROR Indicate downstream error
21 NOT_ENOUGH_SEATS_AVAILABLE Indicate that there are not enough seats available for this session
22 SESSION_NOT_FOUND indicate that session doesn't find in our system
23 PRODUCT_NOT_FOUND Indicate that product doesn't find in our system
24 ORDER_NOT_FOUND Indicate that order doesn't find in our system
25 ORDER_LINE_ITEM_NOT_FOUND Indicate that order line item doesn't find in our system
26 MIN_BOOK_AHEAD_START_TIME Indicate that the date of booking must be booked {n} duration before tour start
27 MIN_BOOK_AHEAD_END_TIME Indicate that the date of booking must be booked {n} duration before tour end
28 INVALID_CUSTOMER_EMAIL Indicate that the customer email address is not in a valid format
29 BLOCKED_EMAIL Indicate that the customer email address has been blocked
30 DOWNSTREAM_TIMEOUT Indicate that the source of the error is a timeout in communication with downstream services. You could retry this call later.
31 INTERNAL_ERROR Indicate that Rezdy failed to process a request because of an internal error
32 INVALID_PRICE_OPTION Indicate that the price option used for a booking does not exist on the product
33 REZDYCONNECT_EXTERNAL_SYSTEM Indicate that external RezdyConnect system did not return mandatory data to finish operation.
34 OTHER_OPERATION_IN_PROGRESS Indicate that currently there is a session update process running for received product code. You can retry this call shortly.

Availability

API real-time and historical uptime/availability details are available here.

We use a highly available architecture and hosting resources with Amazon Web Services. Our standard releases are transparent, therefore causing no downtime, and are backwards-compatible unless it is a major version release (see versioning above). In case a maintenance period is required we will alert users via in-app messages and announcements on our support forum and our Rezdy Ops Twitter account.

API Limitations

Our API is in active development with regular new endpoints and features being added to support more use cases. There are, however, some current limitations:

  • 3D-Secure authentication for payments processing is not yet supported in API, therefore Stripe payments (StripeConnect, RezdyPay, Marketplace, and Automated payments) to book EU suppliers' products may not work.
  • Updating bookings is limited to status, customer & participant details. Updating products or dates is not supported.
  • Rental products, custom products with a price per duration or GIFT_CARD products, cannot be booked through the API yet (see isApiBookingSupported field in Product response model)
  • Return shuttle/Transfer product prices are not exposed through the Rezdy API, but products can be booked independently as 2x one-way products.
  • Availability limited per price option is not supported. These products can be booked but only the total availability per session is exposed.
  • GIFT_CARD type products cannot be created or booked using the Rezdy API
  • We don't recommend doing immediate consecutive product updates, session creates, or session updates for the same product code, or a product code of a shared product. This is due to the async session operation that is being triggered and limited to being scheduled once per product (shared products group) at a time.

Terminology

Supplier (Tour Operator)

A business supplying products for resale to agents channels or Rezdy marketplace (B2B) or using Rezdy booking software to sell them to end customers (B2C).

A supplier can also act as an agent and resell other suppliers' products. In that case, refer to Rezdy API specification for Agents

Agent (Reseller)

A business reselling supplier products.

Product (Tour, Activity)

An experience that a supplier is selling on Rezdy.

Booking (Order)

Transaction of selling a product or multiple products belonging to the same Rezdy supplier. Booking and order might be used interchangeably, but refer to the same entity across the specification.

Booking item (Order item)

A booking consist of a single or multiple items. Each item is linked to a single product, a single or no session (depending on product booking mode), and can have different quantities and tour participants.

Reservation

An un-confirmed booking (A booking with orderStatus == PROCESSING) that temporarily holds availability.

At the moment reservations are not available in agent API.

Session (Tour session)

A time slot when a product (tour or activity) is scheduled to run at. A session provides information such as start and end time, total capacity (seats), remaining capacity (seatsAvailable) and pricing (priceOptions).

Customer

An entity representing information about an end customer who booked a product. A booking can have multiple items and each can have a list of participants based on the booked quantities, but only a single main customer per booking.

Participant

An entity representing information about additional tour participants. A booking item is associated with a list of participants.

The first participant always represents the main customer. For your convenience Rezdy automatically copies information from customer entity into the booking first participant in booking requests

Extra (Product extra)

An additional item or service that can be booked together with a product. Extras do not have their own availability.

Booking field

A booking questions or information provided during a booking process. Booking fields can be stored on order level (a booking field per booking) or participant level (a booking field per participant). Booking fields can be mandatory or optional and may require a certain format.

See Using Booking Fields for details.

Pickup

A list of pickup locations and additional pickup instructions that are associated with a product, that customers can choose from during booking.

See Providing customer with pickups for details.

Resource

An entity such as tour guide, car, boat, etc. that can be associated with sessions. A resource limits session availability and can be shared across multiple sessions.

Coupon (Voucher, Promocode)

A discount that suppliers can offer for customers to apply for their product bookings.

At the moment coupons are not available in agent API.

Manual payment

A booking payment that requires manual reconciliation between agent and supplier outside of Rezdy.

See Bookig workflow for details.

Automated payment

A full booking payment that is required at the time of booking, and is automatically split and paid to supplier and agent.

See Bookig workflow for details.

Marketplace

The two-sided B2B platform provided by Rezdy where suppliers and resellers can search, connect and trade with one another. Only marketplace rate products are available on Rezdy marketplace and only automated payments can be used for marketplace bookings.

Marketplace rate

Marketplace rate allows suppliers to select products available for Rezdy marketplace and set up their commission amount.

Negotiated rate

Negotiated rate allows agents and suppliers to agree on a specific commission amount to be used for selected products for their bookings.

Category

Product categorisation, which allows agents or suppliers to assign Rezdy products to logical groups.

Manifest

A functionality around tour participant manifest, such as check-in, no show flags.

Getting started

Account setup

You need to follow these steps to be able to use the Supplier API:

  1. Create a supplier account on https://app.rezdy.com, or on https://app.rezdy-staging.com for testing purpose.
  2. Create a product. The product should be set up with "Fixed Dates and time" scheduling mode.
  3. Create sessions in your calendar. Sessions open availability for your product
  4. To obtain your API Key, please send a request through Integrations > Rezdy API > Request API Key.
  5. Read our API Overview, check out the typical use cases, examples, and endpoints specification below. Build your client and feel free to get in touch if you have any questions or if you’d like to discuss the implementation of our API services.

Generate API key

You have to request to obtain an initial API Key from our support team. Requests to generate an API key may take up to "48" hours to process. Once generated, the key will automatically appear on the Rezdy API page on the Integrations menu for immediate use. You can request your API key by logging into Rezdy and clicking:

  1. Integrations
  2. Rezdy API

API key

Typical use cases

From browsing to booking flow

A typical use case for supplier integration with Rezdy API, is to facilitate Rezdy API data to build a booking site for your Rezdy products. These examples show the API requests and responses for a typical booking flow. It helps you understand the process to replicate the Rezdy booking form through the API.

That typically consists of the following steps:

  1. Load and cache your Rezdy product details, and refresh it regularly. Search product
  2. Load and cache Rezdy product availability, and refresh it regularly. Search availability
  3. Build a checkout flow, which includes a real-time availability check of user selected product sessions and booking creation. Create booking
  4. Update booking with additional data such participant data, comments or customer pick location. Update booking
  5. Cancel a booking Cancel booking

Note: You can also act as an agent and book products of other suppliers, however the payloads are slightly different, therefore in such case follow Rezdy API for agents specification.

Load product details

Agents do not own any product. You must use the GET /products endpoint to load products that suppliers have shared. Product details include general pricing, description and photos. There are many attributes available on the service, allowing you to filter products by location, supplier, category, rate type, etc.

When a customer browses to a specific product page on your website, you should show the product details including general pricing, description and photos using GET /products call.

To optimise the performance it is better to call search products and cache the retrieved products for at least 24 hours, depending on how often you tend to update your products content. Any search filters functionality should be implemented client side.

Example request:

GET https://api.rezdy-staging.com/v1/products?apiKey=5f4b36ff169047a4a5682cba7e07fea4

Example response:

{
    "requestStatus": {
        "success": true,
        "version": "v1"
    },
    "products": [
        {
            "productType": "ACTIVITY",
            "name": "Double dive with sharks",
            "shortDescription": "Double dive with grey nurse or leopard sharks, depending on the season.",
            "description": "Double dive with grey nurse or leopard sharks, depending on the season. Boat dive with a snack provided during the break between the dives. The dive site is suitable for open water divers.",
            "productCode": "PWQF1Y",
            "internalCode": "DIVING",
            "supplierId": 13398,
            "supplierAlias": "apispecificationdemosupplierdonotedit",
            "supplierName": "API specification demo supplier (DO NOT EDIT)",
            "timezone": "Australia/Sydney",
            "advertisedPrice": 200.0,
            "priceOptions": [
                {
                    "price": 250.0,
                    "label": "Adult",
                    "id": 929159,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                },
                {
                    "price": 200.0,
                    "label": "Student",
                    "id": 929160,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                }
            ],
            "currency": "AUD",
            "unitLabel": "Participant",
            "unitLabelPlural": "Participants",
            "quantityRequired": true,
            "quantityRequiredMin": 1,
            "quantityRequiredMax": 50,
            "images": [
                {
                    "id": 22650,
                    "itemUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8351.jpg",
                    "thumbnailUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8351_tb.jpg",
                    "mediumSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8351_med.jpg",
                    "largeSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8351_lg.jpg"
                },
                {
                    "id": 22651,
                    "itemUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8378.jpg",
                    "thumbnailUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8378_tb.jpg",
                    "mediumSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8378_med.jpg",
                    "largeSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN8378_lg.jpg"
                },
                {
                    "id": 22652,
                    "itemUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1387.jpg",
                    "thumbnailUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1387_tb.jpg",
                    "mediumSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1387_med.jpg",
                    "largeSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1387_lg.jpg"
                },
                {
                    "id": 22653,
                    "itemUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1402.jpg",
                    "thumbnailUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1402_tb.jpg",
                    "mediumSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1402_med.jpg",
                    "largeSizeUrl": "https://img.rezdy-staging.com/PRODUCT_IMAGE/13398/DSCN1402_lg.jpg"
                }
            ],
            "bookingMode": "INVENTORY",
            "charter": false,
            "terms": "",
            "extras": [
                {
                    "name": "Underwater camera rental",
                    "description": "An underwater camera rental for the dive. Choice of GoPro or Nikon Coolpix AW130. Select the number of cameras up to the number of participants, that you would like to rent for this booking.",
                    "price": 15.0,
                    "extraPriceType": "ANY"
                }
            ],
            "bookingFields": [
                {
                    "label": "First Name",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": true,
                    "visiblePerParticipant": true,
                    "visiblePerBooking": true,
                    "fieldType": "String"
                },
                {
                    "label": "Last Name",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": true,
                    "visiblePerParticipant": true,
                    "visiblePerBooking": true,
                    "fieldType": "String"
                },
                {
                    "label": "Mobile",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": true,
                    "visiblePerParticipant": false,
                    "visiblePerBooking": true,
                    "fieldType": "Phone"
                },
                {
                    "label": "Email",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": true,
                    "visiblePerParticipant": false,
                    "visiblePerBooking": true,
                    "fieldType": "String"
                },
                {
                    "label": "Special Requirements",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": false,
                    "visiblePerParticipant": false,
                    "visiblePerBooking": true,
                    "fieldType": "String"
                },
                {
                    "label": "Certification level",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": false,
                    "visiblePerParticipant": true,
                    "visiblePerBooking": false,
                    "fieldType": "String"
                },
                {
                    "label": "Certification number",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": false,
                    "visiblePerParticipant": true,
                    "visiblePerBooking": false,
                    "fieldType": "String"
                },
                {
                    "label": "Certification agency",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": false,
                    "visiblePerParticipant": true,
                    "visiblePerBooking": false,
                    "listOptions": "PADI\r\nSSI\r\nSDI",
                    "fieldType": "List"
                }
            ],
            "latitude": -28.6113488,
            "longitude": 153.629085,
            "confirmMode": "AUTOCONFIRM",
            "confirmModeMinParticipants": 0,
            "commissionIncludesExtras": false,
            "cancellationPolicyDays": 7,
            "dateCreated": "2021-08-30T23:49:55Z",
            "minimumNoticeMinutes": 1440,
            "durationMinutes": 180,
            "dateUpdated": "2021-09-13T04:13:35Z",
            "pickupId": 475,
            "locationAddress": {
                "addressLine": "Julien rocks",
                "postCode": "",
                "city": "Byron Bay",
                "state": "",
                "countryCode": "au",
                "latitude": -28.6113488,
                "longitude": 153.629085
            },
            "languages": [
                "en_au"
            ],
            "tags": [
                "TYPE:Activity"
            ],
            "waitListingEnabled": false,
            "isApiBookingSupported": true
        }
    ]
}

The response includes a few important attributes that you will need to make a booking:

  • Price options: You can see there are 2 price options, with different labels (Adult, Student). When you make a booking you should send the exact same label in the Quantity.optionLabel attribute. You do not need to store or send priceOption Ids.
  • Booking Fields: This is a list of the various fields suppliers require when making a booking. Some fields can be required once per booking and should be added to the Booking.fields[] array. Others can be required once per participant and should be added to the BookingItem[].participants[].fields[] array for each participant.

Check availability

When a customer wants to check availability for a specific product, you can call the GET /availability endpoint to load availability.

Example Request

GET https://api.rezdy-staging.com/v1/availability?apiKey=5f4b36ff169047a4a5682cba7e07fea4&productCode=PWQF1Y&startTimeLocal=2025-10-01 00:00:00&endTimeLocal=2025-10-03 00:00:00

This loads all the available sessions for product with code PF6B25 for the whole month of November 2014 in the supplier’s local timezone.

It is possible to load availability for multiple products in a single request. Simply add multiple productCode attributes to the request:

GET https://api.rezdy-staging.com/v1/availability?apiKey=5f4b36ff169047a4a5682cba7e07fea4&productCode=P00TNX&productCode=PWQF1Y&startTimeLocal=2025-10-01 00:00:00&endTimeLocal=2025-10-03 00:00:00

We recommend using startTimeLocal and endTimeLocal attributes, instead of startTime and endTime. These older attributes required you to send the timezone as part of your request.

GET https://api.rezdy-staging.com/v1/availability?apiKey=5f4b36ff169047a4a5682cba7e07fea4&productCode=P00TNX&productCode=PWQF1Y&startTime=2025-10-01T00:00:00%2B11:00&endTime=2025-10-03T00:00:00%2B11:00

Example Response

{
    "requestStatus": {
        "success": true,
        "version": "v1"
    },
    "sessions": [
        {
            "id": 2788078,
            "productCode": "PWQF1Y",
            "startTime": "2021-09-30T23:00:00Z",
            "endTime": "2021-10-01T02:00:00Z",
            "startTimeLocal": "2021-10-01 09:00:00",
            "endTimeLocal": "2021-10-01 12:00:00",
            "allDay": false,
            "seats": 50,
            "seatsAvailable": 48,
            "priceOptions": [
                {
                    "price": 250.0,
                    "label": "Adult",
                    "id": 929159,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                },
                {
                    "price": 200.0,
                    "label": "Student",
                    "id": 929160,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                }
            ]
        },
        {
            "id": 2788381,
            "productCode": "PWQF1Y",
            "startTime": "2021-10-01T23:00:00Z",
            "endTime": "2021-10-02T02:00:00Z",
            "startTimeLocal": "2021-10-02 09:00:00",
            "endTimeLocal": "2021-10-02 12:00:00",
            "allDay": false,
            "seats": 50,
            "seatsAvailable": 50,
            "priceOptions": [
                {
                    "price": 250.0,
                    "label": "Adult",
                    "id": 929159,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                },
                {
                    "price": 200.0,
                    "label": "Student",
                    "id": 929160,
                    "seatsUsed": 1,
                    "productCode": "PWQF1Y"
                }
            ]
        }
    ]
}

Important information here is:

  • startTimeLocal: This is the localized session time you need to send when making a booking for a specific session.
  • seatsAvailable: This is the number of seats available for that specific session.
  • startTime: It is also possible to use timezone-independent session start time for the product booking. However, only one of the fields startTime or startTimeLocal can be used in the booking request, therefore it is up to you to choose which way is more convenient for your client-side code. See the Dates format section for details.

Create booking

Now when you built and cached products and availability with price, the next step is a checkout flow.

When a customer selects a specific time and checks out, you should verify real-time availability of the chosen session. Similarly, as the step above, except startTimeLocal and endTimeLocal will be set as the customer's chosen time. In the example we assume customer selecting a tour starting at 9:00 am local time on the 1st of October.

GET https://api.rezdy-staging.com/v1/availability?apiKey=5f4b36ff169047a4a5682cba7e07fea4&productCode=PWQF1Y&startTimeLocal=2025-10-01 09:00:00&endTimeLocal=2025-10-01 09:00:00

If the seats are still available, you can create a booking in Rezdy by calling the POST /bookings endpoint.

The following request creates a simple booking for 1 Adult for the product we previously loaded. It’s a $250 booking for November 3rd at 9:00AM in Sydney, with a manually processed payment recorded. That means you charged the customer outside Rezdy, on your own website/gateway. You record that payment in the booking for a record keeping purpose only, but Rezdy will not process any payment in this case.

Example Request

POST https://api.rezdy-staging.com/v1/bookings?apiKey=5f4b36ff169047a4a5682cba7e07fea4
{
    "customer": {
        "firstName": "Rick",
        "lastName": "Sanchez",
        "phone": "+61484123456"
    },
    "items": [
        {
            "productCode": "PWQF1Y",
            "startTimeLocal": "2025-10-01 09:00:00",
            "quantities": [
                {
                    "optionLabel": "Adult",
                    "value": 1
                }
            ]
        }
    ],
    "payments": [
        {
            "amount": 250,
            "type": "CASH",
            "recipient": "SUPPLIER",
            "label": "Paid in cash to API specification demo company"
        }
    ]
}

Update booking

PUT /bookings endpoint allows you to amend or provide additional information to an existing booking.

The example below updates the comments, customer pickup location and participant booking fields.

Example Request

PUT: https://api.rezdy-staging.com/v1/bookings/R0A1D6U?apiKey=5f4b36ff169047a4a5682cba7e07fea4
{
    "comments": "Here come comments that are visible to you, but not to customers",
    "orderNumber": "R0A1D6U",
    "status": "CONFIRMED",
    "supplierId": 13398,
    "supplierName": "API specification demo supplier (DO NOT EDIT)",
    "supplierAlias": "apispecificationdemosupplierdonotedit",
    "customer": {
        "id": 29857,
        "firstName": "Rick",
        "lastName": "Sanchez",
        "name": "Rick Sanchez",
        "phone": "+61484123456"
    },
    "items": [
        {
            "pickupLocation": {
                "locationName": "Divers hotel"
            },
            "productName": "Double dive with sharks",
            "productCode": "PWQF1Y",
            "startTime": "2025-09-30T23:00:00Z",
            "endTime": "2025-10-01T02:00:00Z",
            "startTimeLocal": "2025-10-01 09:00:00",
            "endTimeLocal": "2025-10-01 12:00:00",
            "quantities": [
                {
                    "optionLabel": "Adult",
                    "optionPrice": 250.0,
                    "value": 1
                }
            ],
            "totalQuantity": 1,
            "amount": 250.0,
            "extras": [],
            "participants": [
                {
                    "fields": [
                        {
                            "label": "First Name",
                            "value": "Rick"
                        },
                        {
                            "label": "Last Name",
                            "value": "Sanchez"
                        },
                        {
                            "label": "Certification level",
                            "value": "Open Water"
                        },
                        {
                            "label": "Certification number",
                            "value": "123456798"
                        },
                        {
                            "label": "Certification agency",
                            "value": "PADI"
                        }
                    ]
                }
            ],
            "subtotal": 250.0
        }
    ],
    "totalAmount": 250.0,
    "totalCurrency": "AUD",
    "totalPaid": 250.0,
    "totalDue": 0.0,
    "dateCreated": "2021-09-17T01:03:34Z",
    "dateConfirmed": "2021-09-17T01:03:34.298Z",
    "datePaid": "2021-09-17T01:03:34.298Z",
    "payments": [
        {
            "type": "CASH",
            "amount": 250.0,
            "currency": "AUD",
            "date": "2021-09-17T01:03:34.303Z",
            "label": "Paid in cash to API specification demo company",
            "recipient": "SUPPLIER"
        }
    ],
    "fields": [
        {
            "label": "Barcode",
            "value": "R0A1D6U"
        }
    ],
    "source": "API",
    "vouchers": [],
    "barcodeType": "QR_CODE"
}

Cancel booking

To cancel a booking use DELETE /bookings endpoint as in example below with an empty request body.

Example Request

DELETE https://api.rezdy-staging.com/v1/bookings/R0A1D6U?apiKey=5f4b36ff169047a4a5682cba7e07fea4

2 steps booking

Two steps booking flow is useful for minimising availability errors during a customer checkout, thereby achieving a better customer experience.

Typical flow with 2 steps booking process follow these steps:

  1. create a reservation: call Rezdy API to create a reservation (an order with PROCESSING status) upon a customer cart checkout. This will create an order, which holds reserved product's session's availability for at least 60 minutes or until cancelled.
  2. confirm/cancel it: process customer information or payment in your portal. Once done, call Rezdy to confirm the booking (set status to CONFIRMED). Alternatively, cancel the reservation to free the availability when checkout process was abandoned or failed. If it's not done manually, Rezdy will do so after 60 minutes.

Example requests to do a 2 steps booking are similar to a standard create and update booking, the only difference is how we set a field status

Create a reservation - a booking in the PROCESSING status:

POST https://api.rezdy.com/v1/bookings/?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5
{
    "status": "PROCESSING", 
    "customer": {
    ...	
}

Confirm a reservation - update the booking RKM1ULT to CONFIRMED status:

PUT https://api.rezdy.com/v1/bookings/RKM1ULT/?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5
{
    "status": "CONFIRMED", 
    "customer": {
    ...	
}

Note: If a product confirmMode is not set as AUTOCONFIRM the resulting order status might not be CONFIRMED. An order can end up with a PENDING_SUPPLIER status. Another case is, if the used payment option requires customer to process a payment in a third party provider, such as PayPal. In such case the status will be PENDING_CUSTOMER

Alternatively, to free up the reserved availability, update a booking RKM1ULT to CANCELLED or ABANDONED_CART status, the later option will cause the order to be hidden from UI screens:

PUT https://api.rezdy.com/v1/bookings/RKM1ULT/?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5
{
    "status": "CANCELLED", 
    "customer": {
    ...	
}

RezdyPay payment processing

RezdyPay payment gateway uses Stripe as an underlying payment provider to process payments though Rezdy platform account, setting your Stripe account as a charge destination using Stripe Charge API. Therefore, you will need to implement an extra call directly to Stripe, before calling Rezdy Booking API.

Charge flow

Use the following 2 calls booking flow:

1. Request a Stripe card token, by sending the customer’s credit card details directly from the customer's browser to Stripe.

You must use a client-side library (Checkout, Elements, or mobile libraries) to perform this process, client-side. You must NOT use the Stripe API. Use Rezdy’s Stripe publishable key (see below) in your request, for the token to be generated on Rezdy’s account. The card is not charged at this stage.

Rezdy’s Stripe publishable keys are:

Staging environment: pk_test_51KW8A8ItvA6u4On8YM6AE95ytcqBr0LeRBEEFw4f5MDQPTDBWVt2TAWXhfynCn7NUVwaGc2eP431DNCkmfMaB0AF00firEVJ58  
Production environment: pk_live_51H4gSPHO6p5n6bFnuGRLb84FCiptIUAwmgYaBubvp5A09HujFx54ExvLkXOufEcqrHsaCWvnmZfO33efkIFVbpIv00PkoJDRDA  

Staging environment keys are usable on api.rezdy-staging.com. Production environment key must be used on api.rezdy.com.

2. Call POST /bookings service, but do not include any booking payments data. You must instead send a creditCard.cardToken parameter that is Stripe’s generated token (id field from Stripe’s API response). Rezdy will confirm the booking, consume the token by processing the payment and record payment on the booking object.

{    
    ...
    "creditCard": {
        "cardToken": "tok_1234zczx9xyzbkBzxcNoabcdef"
    }
    ...
}

Supporting different booking Modes

There are 3 modes how a product tours can be scheduled in Rezdy, they are called booking modes. It's necessary to take into account the differences between them, for displaying a product availability and making a booking using public API.

These 3 booking modes are:

  1. NO_DATE Do not ask for any date (I.e. open tickets valid 6 months from purchase date)
  2. DATE_ENQUIRY Require a date but the customer can choose any. There's no availability check.
  3. INVENTORY Require pre-populated availability (date+time)

NO_DATE

In case of the NO_DATE products, there is no need to specify booking date and time in a booking request. (However there won't be an error if the startTime or startTimeLocal is specified in a booking request, it just won't be used)

We generate a fake session for the NO_DATE products into GET /availability response, the session startTimeLocal will be midnight and there will be always 999 seats available:

"startTimeLocal": "2016-07-01 00:00:00",  
"seats": 999,  

DATE_ENQUIRY

For the DATE_ENQUIRY products, the booking date and time is required, however there can be any booking date specified. For a booking time, it's a bit more tricky. Those products can be configured to accept any time or just predefined times. How to recognize, if any time is accepted?

We generate a session for DATE_ENQUIRY products into GET /availability response. If the product accept the any time booking, the session startTimeLocal will be a midnight - 00:00:00 time. Otherwise there will be a session for each predefined time.

Availability response - the DATE_ENQUIRY product, which accepts any time booking:

"startTimeLocal": "2016-06-01 00:00:00",  
"seats": 999,  

Availability response - the DATE_ENQUIRY product with predefined list of booking times (7:00 and 9:00 a.m.):

{
    "startTimeLocal": "2016-05-31 07:00:00",  
    "seats": 999,  
    ...
},  
{ 
    "startTimeLocal": "2016-05-31 09:00:00",  
    "seats": 999,  
    ...
}

INVENTORY

This mode is used by most of the products. It means the availability is defined by scheduled sessions. The booking date and time have to match a session startTime.

GET /availability response of INVENTORY mode products, will contain the list of scheduled sessions with a start time and seats available as the supplier scheduled:

"startTimeLocal": "2016-07-01 09:00:00",  
"seats": 20,  

Providing customer with pickups

Once a pickup is configured for a certain product, the product detail will contain a field pickupId. The Id value is not required for further use in other API calls (it's for the future purpose), for now on it just means the pickups are configured for this product.

For example:

https://api.rezdy-staging.com/v1/products/marketplace?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5&search=PWQF1Y 

RESPONSE:

{  
  "requestStatus": {  
    "success": true,  
    "version": "v1"  
  },  
  "products": [  
    {  
      "productCode": "PWQF1Y",  
      "pickupId": 475,  
...  

To retrieve configured pickup for the product, with a list of all pickup location, call the service method below:

https://api.rezdy-staging.com/v1/products/PWQF1Y/pickups?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

RESPONSE:

{
    "requestStatus": {
        "success": true,
        "version": "v1"
    },
    "pickupLocations": [
        {
            "locationName": "Divers hotel",
            "address": "Cape Byron, Byron Bay NSW, Australia",
            "latitude": -28.6473671,
            "longitude": 153.601977,
            "minutesPrior": 30,
            "additionalInstructions": "Please be ready 15 minute before the pickup time in the hotel lobby area."
        },
        {
            "locationName": "Seaside hostel",
            "address": "Main Beach, Byron Bay NSW, Australia",
            "latitude": -28.6412831,
            "longitude": 153.6166691,
            "minutesPrior": 20,
            "additionalInstructions": "Please be ready 15 minute before the pickup time in front of the hostel."
        }
    ]
}

To specify a pickup location for a booking, you just need to send one locationName field value of one of the locations from pickupLocations list.

POST https://api.rezdy-staging.com/v1/bookings?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

REQUEST:

{  
    "items":  
    [  
        {  
            "productCode": "PWQF1Y",  
            "startTimeLocal": "2025-08-11 14:00:00",  
            "quantities":  
            [  
                {  
                    "optionLabel": "Adult",  
                    "value": "1"  
                }  
            ],  
            "pickupLocation":  
            {  
                "locationName": "Divers hotel"  
            }  
        }  
    ]
    ... 
}  

System will store the pickup location, calculate pickup time and return the pickup instructions.

RESPONSE:

{  
  "requestStatus": {  
    "success": true,  
    "version": "v1"  
  },  
  "booking": {  
    "orderNumber": "R3MPR7Z",  
    ...  
    "items": [  
      {  
        "productName": "DEMO - One day SCUBA diving",  
        "productCode": "PKVT0E",  
        "startTime": "2016-07-11T04:00:00Z",  
        ....  
        "pickupLocation": {  
          "locationName": "Maroubra Beach",  
          "address": "Maroubra Beach, New South Wales, Australia",  
          "pickupTime": "2016-07-11 13:05:00",  
          "pickupInstructions": "In front of the Maroubra seal surfing club building.\r\nPlease be ready 15 minutes before pickup time."  
        }  
      }  
    ],  
    ....  

It is also possible to specify a custom pickup location (should be discussed with the product supplier if this option is feasible):

REQUEST:

{  
    "items":  
    [  
        {  
            "productCode": "PWQF1Y",  
            "startTimeLocal": "2025-08-11 14:00:00",  
            "quantities":  
            [  
                {  
                    "optionLabel": "Adult",  
                    "value": "1"  
                }  
            ],  
            "pickupLocation":  
            {  
                "locationName": "Hotel by the sea"  
            }  
        }  
    ]
    ... 
}  

In this case system stores the pickup location (naturally, it can't calculate the other fields like pickup time or address) and returns the custom pickup location instructions (if specified by the supplier).

RESPONSE:

{  
  "requestStatus": {  
    "success": true,  
    "version": "v1"  
  },  
  "booking": {  
    "orderNumber": "R3MPR7Z",  
    ...  
    "items": [  
      {  
        "productName": "DEMO - One day SCUBA diving",  
        "productCode": "PKVT0E",  
        "startTime": "2016-07-11T04:00:00Z",  
        ....  
        "pickupLocation": {  
            "locationName": "Hotel by the sea",
            "pickupInstructions": "Call us on +61123456 to arrange a pickup from a custom pickup request not listed among the pickup locations.\r\nPlease be ready 15 minute before the pickup time."  
        }  
      }  
    ],  
    .... 

Using Booking Fields

Please note that we are now enforcing validations on Booking Fields that are being sent through our API. Not only the mandatory fields, but also the format matching their type.

Booking Field Types

Every booking field has a certain type (see bookingFields.fieldType) and their value has to be formatted accordingly. An exception is a string, when the booking field value is a free text.

The bookingFields.fieldType is one of:

  • String
  • Phone
  • List
  • Date
  • Boolean

The following booking field types need to have specific values.

Boolean

This field must contain a boolean value. Accepted values are 1, 0, TRUE, FALSE, YES, NO (case insensitive matching)

{
    "label": "I agree to receive marketing emails",
    "value": "true"
}

Date

This field must be a ISO-8601 date only format yyyy-MM-dd e.g. 1991-01-01

{
    "label": "Date of Birth",
    "value": "1991-01-01"
}

Phone

This field must be in an international format +41 44 668 18 00, or E164 format +41446681800

{
    "label": "Mobile",
    "value": "+61484123456"
}

List

List types need to match one of the predefined values, common list types are the following:

Country

This field must be in ISO 3166-1 alpha-2 codes format e.g. Australia -> au, United States -> us (case insensitive matching)

{
    "label": "Country",
    "value": "AU"
}
Gender

Valid genders that are accepted through our API will be: MALE and FEMALE. (case insensitive matching)

{
    "label": "Gender",
    "value": "MALE"
}
Title

Valid titles that are accepted through our API will be: MR, MS, MRS, MISS. (case insensitive matching)

{
    "label": "Title",
    "value": "MISS"
}

Suppressing customer notification emails

You are able to suppress Rezdy's notifications to customers when creating or cancelling a booking. You can then send emails & SMS from your own system instead.

To disable them, send the flag "sendNotifications" = "false" in the booking object in POST /bookings e.g.:

{
    "customer": {},
    "items": [],
    "sendNotifications": false
}

The flag is only used per request and is not stored.

To suppress notifications when cancelling a booking, you must set it as query parameter in the cancellation request:

DELETE /bookings/{orderNumber}?sendNotifications=false

It is not possible to disable Rezdy's notifications to suppliers and agents. Only the customer notifications can be disabled.

Note: Rezdy emails may include QR codes (if enabled by supplier), which suppliers can use to check-in participants using our mobile apps, see (QR Code Scanner ). If you decide to use your own emails, the booking QR code should be included in the e-mails. The QR code is the Rezdy orderNumber.

API and Widgets integration

The Rezdy API does not expose internal product Ids. You can only use Rezdy-generated product codes, which always start with P, e.g. PVGNQX. However, booking forms use internal product Ids in booking page URLs and widgets, e.g. https://demo-booking-form.rezdy.com/124318/amazing-day-tour

If you need to load product data from the API and then link to the booking form for checkout, you can use the product codes. These 2 URLs will load the same page:

https://demo-booking-form.rezdy.com/124318/amazing-day-tour

https://demo-booking-form.rezdy.com/view/PVGNQX

You can therefore use API product codes for booking form product pages, by using this url:

https://{alias}.rezdy.com/view/{productCode}

Changelog

Released changes:

2023-03-31

Added new error codes

2022-08-29

In order to support automated commissions payout via Stripe recipient only account, RezdyPay on staging environment has switched to a new US-based Stripe test account, and the Stripe publishable key for staging environment has changed. The key for production environment remains the same.

Staging environment: pk_test_51KW8A8ItvA6u4On8YM6AE95ytcqBr0LeRBEEFw4f5MDQPTDBWVt2TAWXhfynCn7NUVwaGc2eP431DNCkmfMaB0AF00firEVJ58

2021-08-30

Rezdy API specification split into agent and supplier portal.

2021-01-03

RezdyPay payment gateway has been upgraded and Rezdy uses a new Stripe platform account, to process automated payment bookings, or manual payment bookings with credit card charged though RezdyPay. As a result, new publishable keys need to be used to create a Stripe token.

Staging environment: pk_test_5nODbTMiGQCMOHg0Nt5LzQUV00CcWuIksX  
Production environment: pk_live_51H4gSPHO6p5n6bFnuGRLb84FCiptIUAwmgYaBubvp5A09HujFx54ExvLkXOufEcqrHsaCWvnmZfO33efkIFVbpIv00PkoJDRDA  

More details are in RezdyPay payments processing article

2021-01-28

  • New product isApiBookingSupported field has been added to Product response model.

It provides a convenient way to find out if a product booking is supported via API. Some product types or pricing types or their combinations are not supported in API. If you are planning to implement a booking flow via API, you should filter out the products, if the value of this field is set as false.

2020-11-17

  • Order level barcodes are now supported, this will always be present as an element in the fields attribute of the Booking model.
    {
      "orderNumber": "R12345",
      ...
      "fields": [
          {
              "label": "Barcode",
              "value": "6000125341"
          }
      ]
    }
    

2020-11-02

  • POST /products/{productCode} and PUT /products/{productCode} can now create "Hidden" booking fields. Hidden booking fields will not be shown to the customer during the booking and are intended for internal use.
  • See Create Product Request and Update Product Request

2020-09-24

  • POST /products/{productCode} and PUT /products/{productCode} now has the ability to determine how to output barcodes when a booking is created for that product. This can be achieved by populating the barcodeOutputType field. Current values support are:
    • PARTICIPANT: Barcodes will be generated per participant when the product has been booked
    • ORDER: Barcodes will be generated only for the order when the product has been booked
  • See ResponseProduct for more field description

2020-08-24

  • GET /bookings/{orderNumber} now returns barcodeType which specifies the format in which the booking barcodes are in. Rezdy supports "TEXT", "QR_CODE", "CODE_39", "CODE_128", "EAN_8", "EAN_13", "ITF".

2020-06-16

  • A booking reseller and a supplier can use PUT /bookings/{orderNumber} to update resellerReference and pickup locationName fields

2020-04-02

  • Updating product price options are now possible through the PUT /products/{productCode} endpoint

2020-02-10

  • RezdyConnect specification is no longer part of Public API, it has been upgraded and moved to RezdyConnect (2.0.0) portal

2019-10-30

  • Product update service now supports internalCode update

2019-09-30

2019-08-28

  • Agents are allowed to update resellerReference field in PUT /bookings/{orderNumber}

2019-07-04

2019-07-03

  • Api key can be send as HTTP header named apiKey instead of a query parameter e.g. apiKey: abcd123

2019-03-28

  • New fields have been exposed in Product responses including:
    • qrCodeType
    • waitListingEnabled
  • See ResponseProduct for more field description

2019-02-29

2019-02-25

  • Booking search service now supports filtering by date created Please note that the createdSince parameter has been deprecated. Use minDateCreated to include bookings that were created after or on this date. Use maxDateCreated to include bookings that were created before or on this date.
  • Booking responses will now show Supplier Alias and Agent Alias.

2018-11-29

  • Booking search service now includes bookings in PROCESSING status in the result list.
    The PROCESSING status can be used in a supplier's API integration for 2 steps booking process, when a temporal reservation is created to hold availability.
    The PROCESSING bookings are normally released after 60 minutes, if they are not confirmed.
    

2018-11-28

  • New Extra CRUD endpoint and service. A product now can have Extras added to it.
    

2018-11-20

  • New product configurations supported in the product create service, including custom booking field types and product fixed price.
    See updated [Create products article](#operation/createProduct)
    

2018-10-15

  • You should now use the same Stripe publishable key for all currencies, when generating tokens for automated payments. We will accept old keys until at least until 30 November 2018, but please migrate to the new keys below:

    TEST: pk_test_wGcSehTxQDTLoMRVl6Gv45zy
    PROD: pk_live_zKs28ywqmpH5K6Vz9moNGwiM

2018-08-22

  • New fields supported in product update service including confirmMode, confirmModeMinParticipants, minimumNoticeMinutes, durationMinutes
    

2018-07-16

  • New endpoints for [creating](#operation/createPickupList), [updating](#operation/updatePickupList) and [retrieving](#operation/getPickupList) pickup lists accompanied by a new [PickupList](#operation/getPickupList) model
    
    • Added support for setting a pickup for a product through creating and updating products. To add a pickup list to a product simply:
      
      • 1. Create a pick up list
        
        • 2. Specify the pickupId in [ProductCreateRequest](#operation/createProduct) and [ProductUpdateRequest](#operation/updateProduct)
          
          • All taxes and fees applied to a booking item will be now exposed through the totalItemTax field as part of the Booking "items" field.
            
            • Added support for taxes/fees associated with a specific product. This field is available through [get product](#operation/getProduct)
              

2018-06-21

  • Validation for booking field types such as Date of birth, Country, Gender, Title, Marketing are now enforced. Those values that do not comply will not be saved, but rather be appended to the booking comments.
    See [the expected booking fields format](#operation/createBooking)
    

2018-06-20

  • Product cancellationPolicyDays field will now only be shown for marketplace products.
    
    • Product cancellationPolicyDays for products that are shared between agents with AUTOMATED payments will still be shown
      

2018-06-06

  • New product tag filters for search marketplace products **(Check Agent API Portal)**. The product tags are part of the product model and can be retrieved via product search/get services.
    

2018-01-29

2017-12-14

  • Product update service now supports updating product terms & conditions

2017-11-15

  • New field resellerReference added to booking object. It is designed to hold the booking number in an agent system, when it is different from the Rezdy booking number.

2017-10-04

2017-10-01

  • Test API endpoints have changed to be more consistent with our production environment:
  • In accordance with Stripe's PCI Compliance requirements, Stripe tokens generated to process Automated payments must use a client-side library. You must use Checkout, Elements, or mobile libraries to perform this process, client-side. Tokens generated via API will no longer be accepted.

2017-09-29

  • Allow PUT /bookings/{orderNumber} to update resellerComments field

2017-01-19

  • Added services to create and update products:

    • create a product: POST /products
    • delete a product: DELETE /products/{productCode}
    • add a product image: POST /products/{productCode}/images
    • delete a product image: DELETE /products/{productCode}/images/{imageId}

    More details in this article.

  • Added information about visible – optional product booking fields: "visiblePerParticipant": true|false, "visiblePerBooking": true|false to BookingFields model

  • Booking update, for manual payment bookings. Currently, these fields can be updated using the API:

    • customer – all customer data can be updated
    • "per order" booking fields – all values can be updated, added or deleted
    • "per participant" booking fields – all values can be updated, added or deleted
    • order status – only supplier’s for suppliers

    More details in this article.

2016-12-12

  • Search products by languages

2016-11-01

  • Supplier’s promocodes and vouchers redemption supported in a booking request and quote calculation

2016-10-17

  • Added new field commissionIncludesExtras to Product – Flag if agent receive commission from extras, or not

2016-09-28

  • Support for agent payments (Check Agent API Portal) for automated payments agents bookings – all payments in the booking request, will reduce the agent commission.
  • Support for agent price override (Check Agent API Portal) for automated payments agents bookings – if the item amount is specified, the agent commission is adjusted by the difference between the catalog and agent price.

2016-09-26

  • Added product additionalInformation to Product data model – Additional information for the product, that should be sent after a booking is completed (i.e. by email) to the customer. Useful for integration, when manual control of the entire customer booking experience is wanted, and the automatic confirmation e-mail from Rezdy had been suppressed.

2016-09-13

  • Automated payments agents bookings, now show Commission without Rezdy Fee in the response.

2016-09-01

  • sendNotifications field is now supported in DELETE /bookings/{orderNumber} too
  • added new search parameter updatedSince to GET /bookings – Only load bookings updated after this time

2016-08-22

  • Added new fields to show links between Vouchers and Orders.
    • GET /bookings shows the voucher numbers + statuses, that were generated when the order was created and created gift card.
    • GET /vouchers shows the "source" order of the voucher.

2016-06-22

  • Removed the "3 months max range" rule when requesting availability.
  • Default pagination limit increased to 100 instead of 30 in all search services using pagination

2016-05-24

  • Pickups support:
    • Added new service method GET /products/{productCode}/pickups to list pickup locations.
    • Added pickupLocation to BookingItem data model, to specify the pickup location name when creating a booking and display pickup address, time and instructions in the booking response.
  • Added product locationAddress to Product data model.

2016-04-27

  • Added new fields value and valueType to Voucher data model.

2016-04-04

  • TRANSFER product types without return can be booked through the Public API

2016-02-22

  • Added new Company endpoint with service:
    • GET /companies/{companyAlias} – Retrieve Company details by it’s alias
  • Added minimumNoticeMinutes field to Product data model – Minimum book ahead interval for the product in minutes.

2016-02-15

  • Added new Resources endpoint with services:

    • GET /resources – Retrieve all supplier resources.
    • GET /resources/session – Retrieve resources assigned to the session.
    • GET /resources/{resourceId}/sessions – Retrieves all sessions for a specified resource within the start/end datetime range.
    • PUT /resources/{resourceId}/session/{sessionId} – Add a resource to a session.
    • DELETE /resources/{resourceId}/session/{sessionId} – Removes a resource from a session.
  • New service methods in Manifest endpoint:

    • PUT /manifest/checkinSession – Store Check-in / No show flag for everyone in a specified session.
    • PUT /manifest/checkinOrderSession – Place Check-in a / No show flag for the specified order item.
    • DELETE /manifest/checkinSession – Remove Check-in / No show flag from everyone in the whole session.
    • DELETE /manifest/checkinOrderSession – Remove Check-in / No show flag for the specified order item.
  • Added duration fields to Product data model

  • Support of orderStatus field in supplier’s Booking request

2016-02-01

  • Added localized date/time fields: startTimeLocal and endTimeLocal can be used to search and display availability in the supplier’s timezone.
  • Added new fields to Product data model: dateCreated and dateUpdated. Also added updatedSince attribute to GET /products/marketplace (Check Agent API Portal) endpoint
  • Added new fields to Product data model when calling GET /products/marketplace (Check Agent API Portal) as an agent: cancellationPolicyDays. This is only used for Automated Payments (agentPaymentType = PAYOUTS)
  • Added search by supplierAlias to GET /products/marketplace (Check Agent API Portal) endpoint
  • Added automatic refund when canceling an Automated payments booking

2015-11-23

  • Added support for DATE_ENQUIRY and NO_DATE booking modes for /availability and /bookings calls. When calling /availability for these products, one session per day will always be returned.
  • Added new fields to Product data model: confirmModeMinParticipants
  • Added new fields to Product data model when calling GET /products/marketplace (Check Agent API Portal) as an agent: agentPaymentType, maxCommissionPercent, maxCommissionNetRate

2015-07-27 – Marketplace release

  • The API service /products/partners has been deprecated and replaced by a new service /products/marketplace (Check Agent API Portal) with many more filters.
  • Some constants were renamed, especially Order source PARTNERS to MARKETPLACE_PREF_RATE, and COMMUNITY to MARKETPLACE.

2015-07-13

  • Added support for multiple product codes to the GET /availability endpoint. Use "&productCode=P11111&productCode=P22222&productCode=P33333" to request availability for multiple products in the same request

2015-06-10

  • Added images to Extras

2015-04-20

  • New endpoint to validate a booking and calculate totals before it’s created: POST /bookings/quote
  • Added support for Credit Card payments to the POST /bookings endpoint
  • Fixed incorrect min/max quantities for DOUBLE, TRIPLE and QUAD price options

2015-03-30

2015-03-16

  • Fix an issue with mandatory fields required "once per booking".

2015-03-02

  • Added currency attribute to products

2015-02-02

  • Fix group price options. Use correct label and show min/max participant values for each group price.

2015-01-19

  • New Category endpoint to load categories and products within categories. 3 new services are available:
    • GET /categories
    • GET /categories/{categoryId}
    • GET /categories/{categoryId}/products

2014-12-17

  • Added new attributes to filter the GET /bookings results. You can now filter by product, booked date, and only load new bookings created since a set date.

##2014-12-01

  • Added validation and fixed issues with product Extras when making a new booking

2014-11-17

  • Order source has been deprecated for new booking requests. Bookings created by API will now always have source=API. Availability will always be checked for API bookings and minimum bookahead rules will always be enforced. Mandatory fields will not be enforced for supplier bookings.
  • You can now use Booking.sendNotifications (true/false, default true) to control if automated notifications should be sent to the customer or not when making a new booking through the API.
  • New Availability endpoints for suppliers: Create/Delete/Update availability
  • Added pagination to calls that return multiple items. Defaults to 30 results, max 100 per request

2014-11-03

  • Added timezone to Product resource (Product.timezone)
  • Added supplier general terms and conditions to Product resource (Product.generalTerms)
  • New Booking endpoint: DELETE /bookings/{orderNumber} will cancel a booking
  • Updated documentation

2014-07-15

  • Added supplierId attribute to /products/partners to filter products by supplier
  • Simplify price option and quantity mapping when making bookings
  • Added confirmation mode to Product resource (Product.confirmMode)

Availability

Search availability

This service returns availability information for a specific date range. The service response contains a list of sessions, including their availability and pricing details.

Pricing in the session can be different than the pricing of the products, in a case of a dynamic pricing when a supplier overrides a price for a specific session or a ticket type.

In case of multiple products sharing this session, a session will contain price overrides for all of the shared products. Therefore it is necessary to filer only the price options matching the chosen product code on the client side, when displaying available price options to a customer.

query Parameters
productCode
required
Array of strings unique
Example: productCode=P12345

Product code in format P12345. You can request multiple products productCode=P11111&productCode=P22222&productCode=P33333, which belong to a single supplier.

startTime
string
Example: startTime=2014-03-01T00:00:00Z

Start time in ISO 8601 format. It is required to have either startTime or startTimeLocal to define the start of the time window.

endTime
string
Example: endTime=2014-03-01T00:00:00Z

End time in ISO 8601 format. It is required to have either endTime or endTimeLocal to define the end of the time window.

startTimeLocal
string

Start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, for example 2014-03-01 00:00:00. Local times are not supported when querying multiple products from different suppliers. It is required to have either startTime or startTimeLocal to define the start of the time window.

endTimeLocal
string

End time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, for example 2014-04-01 00:00:00. Local times are not supported when querying multiple products from different suppliers. It is required to have either endTime or endTimeLocal to define the end of the time window.

minAvailability
integer <int32>

only load availability for that quantity

limit
integer <int32>

limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

offset
integer <int32>
Default: 0

Offset of the first result to return. Default to 0.

Responses

Response Schema: application/json
required
object (RequestStatus)
Array of objects (Session)

Response samples

Content type
application/json
Example

Get 2 days of product PWQF1Y availability: https://api.rezdy-staging.com/v1/availability?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5&productCode=PWQF1Y&startTimeLocal=2025-10-01 00:00:00&endTimeLocal=2025-10-03 00:00:00

{
  • "requestStatus": {
    • "success": true,
    • "version": "v1"
    },
  • "sessions": [
    • {
      • "id": 2788078,
      • "productCode": "PWQF1Y",
      • "startTime": "2025-09-30T23:00:00Z",
      • "endTime": "2025-10-01T02:00:00Z",
      • "startTimeLocal": "2025-10-01 09:00:00",
      • "endTimeLocal": "2025-10-01 12:00:00",
      • "allDay": false,
      • "seats": 50,
      • "seatsAvailable": 50,
      • "priceOptions": [
        • {
          • "price": 250,
          • "label": "Adult",
          • "id": 929159,
          • "seatsUsed": 1,
          • "productCode": "PWQF1Y"
          },
        • {
          • "price": 200,
          • "label": "Student",
          • "id": 929160,
          • "seatsUsed": 1,
          • "productCode": "PWQF1Y"
          }
        ]
      },
    • {
      • "id": 2788381,
      • "productCode": "PWQF1Y",
      • "startTime": "2025-10-01T23:00:00Z",
      • "endTime": "2025-10-02T02:00:00Z",
      • "startTimeLocal": "2025-10-02 09:00:00",
      • "endTimeLocal": "2025-10-02 12:00:00",
      • "allDay": false,
      • "seats": 50,
      • "seatsAvailable": 50,
      • "priceOptions": [
        • {
          • "price": 250,
          • "label": "Adult",
          • "id": 929159,
          • "seatsUsed": 1,
          • "productCode": "PWQF1Y"
          },
        • {
          • "price": 200,
          • "label": "Student",
          • "id": 929160,
          • "seatsUsed": 1,
          • "productCode": "PWQF1Y"
          }
        ]
      }
    ]
}

Create availability

Create a new session - creates availability for a specific startTime. Sessions can be created only for INVENTORY mode products.
The endTime, if not specified, will be calculated based on selected product default duration, and the current product price options will be used (if not specified). Does not support resources yet

Response is the newly created Session

Request Body schema: application/json
allDay
boolean

If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight.

endTime
string <date-time>

End time of this session. Used to show the customer how long that tour will last

endTimeLocal
string

End time of this session in supplier's local timezone. Used to show the customer how long that tour will last

Array of objects (PriceOption)

List of price options attached to this session. Most of the time they'll match the product's price options, but they can be used to change the price of specific dates/times (I.e. high/low season, weekday/weekend, etc.)

productCode
required
string

Rezdy unique productCode linked to this session

seats
required
integer <int32>

Total number of seats for this session. Does not change after a booking is made

startTime
string <date-time>

Start Time of this session. This time should be used when showing customers the booking date/time. It should be sent in BookingItem.startTime when making new bookings

startTimeLocal
string

Start Time of this session in supplier's local timezone. This time should be used when showing customers the booking date/time. It should be sent in BookingItem.startTimeLocal when making new bookings

Responses

Response Schema: application/json
required
object (RequestStatus)
object (Session)

A Session holds availability for a unique product / start time combination and also the rates for the session booking.

Request samples

Content type
application/json
Example

create a session

{
  • "productCode": "PWQF1Y",
  • "startTimeLocal": "2026-11-01 14:00:00",
  • "seats": 10,
  • "priceOptions": [
    • {
      • "price": 199,
      • "label": "Adult"
      }
    ]
}

Response samples

Content type
application/json
{
  • "requestStatus": {
    • "error": {
      • "errorCode": "string",
      • "errorMessage": "string"
      },
    • "success": true,
    • "version": "string",
    • "warning": {
      • "warningMessage": "string"
      }
    },
  • "session": {
    • "allDay": true,
    • "endTime": "2019-08-24T14:15:22Z",
    • "endTimeLocal": "string",
    • "id": 0,
    • "priceOptions": [
      • {
        • "id": 0,
        • "label": "string",
        • "maxQuantity": 0,
        • "minQuantity": 0,
        • "price": 0,
        • "priceGroupType": "EACH",
        • "productCode": "string",
        • "seatsUsed": 0
        }
      ],
    • "productCode": "string",
    • "seats": 0,
    • "seatsAvailable": 0,
    • "startTime": "2019-08-24T14:15:22Z",
    • "startTimeLocal": "string"
    }
}

Update availability batch

Batch Update availability for a specific product and time period.
This will update availability for all the sessions that start in that time range.
Product code is optional, all sessions for all products will be updated if it is empty. You can use this service to blackout periods (I.e. set availability to 0 for a full day).

Maximum range is one week.

This can only update sessions from products with InventoryMode = SESSION_SEATS.

{ 
    startTime: 2014-11-11T00:00:00Z, 
    endTime: 2014-11-11T23:59:59Z, 
    productCode: P123456, 
    seatsAvailable: 0 
} 

OR

{ 
    startTime: 2014-11-11T00:00:00Z, 
    endTime: 2014-11-11T23:59:59Z, 
    productCode: P123456, 
    seats: 30 
} 

OR

{ 
    startTime: 2014-11-11T00:00:00Z, 
    endTime: 2014-11-11T23:59:59Z, 
    productCode: P123456, 
    priceOptions: [ 
       { 
         price: 90, 
         label: Adult 
       } 
     ] 
} 

If you send seatsAvailable, sessions will be updated for the current availability to become this number.

If you send seats, the total seats capacity of sessions will be updated, regardless of how many are already booked.

If you send both, only seatsAvailable will be used.
If you send priceOptions, they will override the default price options of the existing session.

Request Body schema:
required

Session data must only include one of seats, seatsAvailable or price options.

Rezdy unique productCode linked to this session
required
string
allDay
boolean

If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight.

endTime
string <date-time>

Batch update end interval

endTimeLocal
string

Batch update end interval in supplier's local timezone.

Array of objects (PriceOption)

List of price options, which will override the product level price. Price options have to be a subset of the product price options, thus you can not create new price options, use product update service to do so.

seats
integer <int32>

Update the total number of seats for this session. The total seats does not change after a booking is made. The total number of seats can not be less than 0.

seatsAvailable
integer <int32>

Update the current availability for this session. The session total number of seats after updating the seats available can not be less than 0.

startTime
string <date-time>

Batch update start interval

startTimeLocal
string

Batch update start interval in supplier's local timezone.

Responses

Response Schema:
required
object (RequestStatus)
Array of objects (Session)

Request samples

Content type
{
  • "Rezdy unique productCode linked to this session": "string",
  • "allDay": true,
  • "endTime": "2019-08-24T14:15:22Z",
  • "endTimeLocal": "string",
  • "priceOptions": [
    • {
      • "id": 0,
      • "label": "string",
      • "maxQuantity": 0,
      • "minQuantity": 0,
      • "price": 0,
      • "priceGroupType": "EACH",
      • "productCode": "string",
      • "seatsUsed": 0
      }
    ],
  • "seats": 0,
  • "seatsAvailable": 0,
  • "startTime": "2019-08-24T14:15:22Z",
  • "startTimeLocal": "string"
}

Response samples

Content type
{
  • "requestStatus": {
    • "error": {
      • "errorCode": "string",
      • "errorMessage": "string"
      },
    • "success": true,
    • "version": "string",
    • "warning": {
      • "warningMessage": "string"
      }
    },
  • "sessions": [
    • {
      • "allDay": true,
      • "endTime": "2019-08-24T14:15:22Z",
      • "endTimeLocal": "string",
      • "id": 0,
      • "priceOptions": [
        • {
          • "id": 0,
          • "label": "string",
          • "maxQuantity": 0,
          • "minQuantity": 0,
          • "price": 0,
          • "priceGroupType": "EACH",
          • "productCode": "string",
          • "seatsUsed": 0
          }
        ],
      • "productCode": "string",
      • "seats": 0,
      • "seatsAvailable": 0,
      • "startTime": "2019-08-24T14:15:22Z",
      • "startTimeLocal": "string"
      }
    ]
}

Update availability

Update availability a session starting at a specific local date time

path Parameters
startTimeLocal
required
string

Session to delete local start time

productCode
required
string

Product session

Request Body schema: application/json
allDay
boolean

If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight.

Array of objects (PriceOption)

List of price options, which will override the product level price. Price options have to be a subset of the product price options, thus you can not create new price options, use product update service to do so.

seats
integer <int32>

Update the total number of seats for this session. The total seats does not change after a booking is made. The total number of seats can not be less than 0.

seatsAvailable
integer <int32>

Update the current availability for this session. The session total number of seats after updating the seats available can not be less than 0.

Responses

Response Schema:
required
object (RequestStatus)
object (Session)

A Session holds availability for a unique product / start time combination and also the rates for the session booking.

Request samples

Content type
application/json
Example

update seats available

{
  • "seatsAvailable": 5
}

Response samples

Content type
{
  • "requestStatus": {
    • "error": {
      • "errorCode": "string",
      • "errorMessage": "string"
      },
    • "success": true,
    • "version": "string",
    • "warning": {
      • "warningMessage": "string"
      }
    },
  • "session": {
    • "allDay": true,
    • "endTime": "2019-08-24T14:15:22Z",
    • "endTimeLocal": "string",
    • "id": 0,
    • "priceOptions": [
      • {
        • "id": 0,
        • "label": "string",
        • "maxQuantity": 0,
        • "minQuantity": 0,
        • "price": 0,
        • "priceGroupType": "EACH",
        • "productCode": "string",
        • "seatsUsed": 0
        }
      ],
    • "productCode": "string",
    • "seats": 0,
    • "seatsAvailable": 0,
    • "startTime": "2019-08-24T14:15:22Z",
    • "startTimeLocal": "string"
    }
}

Delete availability

Delete a single session starting at a specific local date time

path Parameters
startTimeLocal
required
string

Session to delete local start time

productCode
required
string

Product session

Responses

Response Schema:
required
object (RequestStatus)

Response samples

Content type
{
  • "requestStatus": {
    • "error": {
      • "errorCode": "string",
      • "errorMessage": "string"
      },
    • "success": true,
    • "version": "string",
    • "warning": {
      • "warningMessage": "string"
      }
    }
}

Products

Search products

Searches a product that matches a search string.
Load all products matching a search string. If the search string is empty, all your products will be returned.
Use this service when acting as a supplier, to load your own products.
If you're acting as an agent, use the /products/marketplace service

query Parameters
search
string

search String to search for. It will be searched in product name, product code and internal code.

limit
integer <int32>

limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

offset
integer <int32>
Default: 0

Offset of the first result to return. Default to 0.

Responses

Response Schema:
Array of objects (Product)
required
object (RequestStatus)

Response samples

Content type
{
  • "products": [
    • {
      • "additionalInformation": "string",
      • "advertisedPrice": 0,
      • "agentPaymentType": "PAYOUTS",
      • "apiBookingSupported": true,
      • "barcodeOutputType": "PARTICIPANT",
      • "bookingFields": [
        • {
          • "fieldType": "String",
          • "label": "string",
          • "listOptions": "string",
          • "requiredPerBooking": true,
          • "requiredPerParticipant": true,
          • "value": "string",
          • "visiblePerBooking": true,
          • "visiblePerParticipant": true
          }
        ],
      • "bookingMode": "NO_DATE",
      • "cancellationPolicyDays": 0,
      • "charter": true,
      • "commissionIncludesExtras": true,
      • "confirmMode": "MANUAL",
      • "confirmModeMinParticipants": 0,
      • "currency": "AED",
      • "dateCreated": "2019-08-24T14:15:22Z",
      • "dateUpdated": "2019-08-24T14:15:22Z",
      • "description": "string",
      • "durationMinutes": 0,
      • "extras": [
        • {
          • "description": "string",
          • "extraPriceType": "ANY",
          • "id": 0,
          • "image": {
            • "id": 0,
            • "itemUrl": "string",
            • "largeSizeUrl": "string",
            • "mediumSizeUrl": "string",
            • "thumbnailUrl": "string"
            },
          • "name": "string",
          • "price": 0,
          • "quantity": 0
          }
        ],
      • "generalTerms": "string",
      • "images": [
        • {
          • "id": 0,
          • "itemUrl": "string",
          • "largeSizeUrl": "string",
          • "mediumSizeUrl": "string",
          • "thumbnailUrl": "string"
          }
        ],
      • "internalCode": "string",
      • "languages": [
        • "string"
        ],
      • "locationAddress": {
        • "addressLine": "string",
        • "addressLine2": "string",
        • "city": "string",
        • "countryCode": "string",
        • "latitude": 0,
        • "longitude": 0,
        • "postCode": "string",
        • "state": "string"
        },
      • "maxCommissionNetRate": 0,
      • "maxCommissionPercent": 0,
      • "minimumNoticeMinutes": 0,
      • "multiProductBookingSupported": true,
      • "name": "string",
      • "pickupId": 0,
      • "priceOptions": [
        • {
          • "id": 0,
          • "label": "string",
          • "maxQuantity": 0,
          • "minQuantity": 0,
          • "price": 0,
          • "priceGroupType": "EACH",
          • "productCode": "string",
          • "seatsUsed": 0
          }
        ],
      • "productCode": "string",
      • "productSeoTags": [
        • {
          • "attrKey": "string",
          • "attrValue": "string",
          • "id": 0,
          • "metaType": "META_NAME",
          • "productCode": "string"
          }
        ],
      • "productType": "ACTIVITY",
      • "qrCodeType": "INTERNAL",
      • "quantityRequired": true,
      • "quantityRequiredMax": 0,
      • "quantityRequiredMin": 0,
      • "shortDescription": "string",
      • "supplierAlias": "string",
      • "supplierId": 0,
      • "supplierName": "string",
      • "tags": [
        • "string"
        ],
      • "taxes": [
        • {
          • "compound": true,
          • "label": "string",
          • "priceInclusive": true,
          • "supplierId": 0,
          • "taxAmount": 0,
          • "taxFeeType": "TAX",
          • "taxPercent": 0,
          • "taxType": "PERCENT"
          }
        ],
      • "terms": "string",
      • "timezone": "string",
      • "unitLabel": "string",
      • "unitLabelPlural": "string",
      • "videos": [
        • {
          • "id": "string",
          • "platform": "string",
          • "url": "string"
          }
        ],
      • "waitListingEnabled": true,
      • "xeroAccount": "string"
      }
    ],
  • "requestStatus": {
    • "error": {
      • "errorCode": "string",
      • "errorMessage": "string"
      },
    • "success": true,
    • "version": "string",
    • "warning": {
      • "warningMessage": "string"
      }
    }
}

Create product

Request Body schema:
required

new product

additionalInformation
string

Additional information for the product, that should be sent after a booking is completed (i.e. by email) to the customer. Useful for integration, when manual control of the entire customer booking experience is wanted, and the automatic confirmation e-mail from Rezdy had been suppressed.

advertisedPrice
number <float>

General price indication for this product. It represents a display price only, therefore it does not affect a real booking price, which is calculated based on the price options.

barcodeOutputType
string
Enum: "PARTICIPANT" "ORDER"

Specifies how to output the barcodes when this product is booked. Valid types are:

  • PARTICIPANT: Barcodes will be generated by rezdy for each participant when an booking is created for this product
  • ORDER: Barcodes will be generated by rezdy per booking
  • required
    Array of objects (BookingFieldCreate)

    List of booking fields required for this product.

    bookingMode
    required
    string
    Enum: "NO_DATE" "DATE_ENQUIRY" "INVENTORY"

    Booking mode. Determines if this product needs availability or can be booked for any date.

    charter
    boolean

    A charter product means each session can only have a single booking, whatever the number of seats booked.

    confirmMode
    required
    string
    Enum: "MANUAL" "AUTOCONFIRM" "MANUAL_THEN_AUTO" "AUTO_THEN_MANUAL"

    Confirmation mode. Determines if bookings are automatically confirmed or it they are pending.

    confirmModeMinParticipants
    integer <int32>

    If confirmMode is MANUAL_THEN_AUTO or AUTO_THEN_MANUAL, determines the minimum number of participants per booking to trigger the change.

    description
    required
    string

    Long product description, is between 100 and 15000 characters.

    durationMinutes
    required
    integer <int64>

    Duration of the product in minutes.

    Array of objects (Extra) unique

    List of extras IDs.

    internalCode
    string

    Supplier-defined product code, used internally by the supplier.

    languages
    Array of strings unique

    List of product languages. The format of the language is ISO 639 two-letter code with BCP 47 language variants, separated by underscore e.g. en_au.

    object (Address)

    Address of a company, customer or product location.

    minimumNoticeMinutes
    integer <int64>

    Minimum book ahead interval for he product in minutes.

    name
    required
    string

    Product name

    pickupId
    integer <int64>

    If pickups are configured for this product, the field will contain the id of the pickup location list created by the supplier.

    required
    Array of objects (PriceOptionCreate)

    List of price options belonging to this product.

    productType
    required
    string
    Enum: "ACTIVITY" "DAYTOUR" "MULTIDAYTOUR" "PRIVATE_TOUR" "TICKET" "RENTAL" "CHARTER" "EVENT" "GIFT_CARD" "TRANSFER" "LESSON" "MERCHANDISE" "CUSTOM"

    Type of this product.

    quantityRequired
    boolean

    Does this product require a quantity to be booked? True for most products. Can be false if the supplier can only provide one quantity at any single time (I.e. private charters) or a price of a booking is fixed regardless of quantity

    quantityRequiredMax
    integer <int32>

    Represent the max booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be lesser or equal than this value.

    quantityRequiredMin
    integer <int32>

    Represent the min booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be greater or equal than this value.

    shortDescription
    required
    string

    Product description is between 15 and 240 characters.

    terms
    string

    Specific terms and conditions for this product.

    unitLabel
    required
    string

    What a quantity for this product is. It can be people (I.e. participant, passenger, diver) or objects (Kayak, Helicopter, etc.)

    unitLabelPlural
    required
    string

    Plural version of unitLabel.

    xeroAccount
    string

    Supplier Xero account for this product.

    Responses

    Response Schema:
    object (Product)

    Product object. Holds general details and settings of a specific tour, activity or event.

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "additionalInformation": "string",
    • "advertisedPrice": 0,
    • "barcodeOutputType": "PARTICIPANT",
    • "bookingFields": [
      • {
        • "fieldType": "String",
        • "label": "string",
        • "listOptions": "string",
        • "requiredPerBooking": true,
        • "requiredPerParticipant": true,
        • "visiblePerBooking": true,
        • "visiblePerParticipant": true
        }
      ],
    • "bookingMode": "NO_DATE",
    • "charter": true,
    • "confirmMode": "MANUAL",
    • "confirmModeMinParticipants": 0,
    • "description": "string",
    • "durationMinutes": 0,
    • "extras": [
      • {
        • "description": "string",
        • "extraPriceType": "ANY",
        • "id": 0,
        • "image": {
          • "id": 0,
          • "itemUrl": "string",
          • "largeSizeUrl": "string",
          • "mediumSizeUrl": "string",
          • "thumbnailUrl": "string"
          },
        • "name": "string",
        • "price": 0,
        • "quantity": 0
        }
      ],
    • "internalCode": "string",
    • "languages": [
      • "string"
      ],
    • "locationAddress": {
      • "addressLine": "string",
      • "addressLine2": "string",
      • "city": "string",
      • "countryCode": "string",
      • "latitude": 0,
      • "longitude": 0,
      • "postCode": "string",
      • "state": "string"
      },
    • "minimumNoticeMinutes": 0,
    • "name": "string",
    • "pickupId": 0,
    • "priceOptions": [
      • {
        • "label": "string",
        • "maxQuantity": 0,
        • "minQuantity": 0,
        • "price": 0,
        • "priceGroupType": "EACH",
        • "productCode": "string",
        • "seatsUsed": 0
        }
      ],
    • "productType": "ACTIVITY",
    • "quantityRequired": true,
    • "quantityRequiredMax": 0,
    • "quantityRequiredMin": 0,
    • "shortDescription": "string",
    • "terms": "string",
    • "unitLabel": "string",
    • "unitLabelPlural": "string",
    • "xeroAccount": "string"
    }

    Response samples

    Content type
    {
    • "product": {
      • "additionalInformation": "string",
      • "advertisedPrice": 0,
      • "agentPaymentType": "PAYOUTS",
      • "apiBookingSupported": true,
      • "barcodeOutputType": "PARTICIPANT",
      • "bookingFields": [
        • {
          • "fieldType": "String",
          • "label": "string",
          • "listOptions": "string",
          • "requiredPerBooking": true,
          • "requiredPerParticipant": true,
          • "value": "string",
          • "visiblePerBooking": true,
          • "visiblePerParticipant": true
          }
        ],
      • "bookingMode": "NO_DATE",
      • "cancellationPolicyDays": 0,
      • "charter": true,
      • "commissionIncludesExtras": true,
      • "confirmMode": "MANUAL",
      • "confirmModeMinParticipants": 0,
      • "currency": "AED",
      • "dateCreated": "2019-08-24T14:15:22Z",
      • "dateUpdated": "2019-08-24T14:15:22Z",
      • "description": "string",
      • "durationMinutes": 0,
      • "extras": [
        • {
          • "description": "string",
          • "extraPriceType": "ANY",
          • "id": 0,
          • "image": {
            • "id": 0,
            • "itemUrl": "string",
            • "largeSizeUrl": "string",
            • "mediumSizeUrl": "string",
            • "thumbnailUrl": "string"
            },
          • "name": "string",
          • "price": 0,
          • "quantity": 0
          }
        ],
      • "generalTerms": "string",
      • "images": [
        • {
          • "id": 0,
          • "itemUrl": "string",
          • "largeSizeUrl": "string",
          • "mediumSizeUrl": "string",
          • "thumbnailUrl": "string"
          }
        ],
      • "internalCode": "string",
      • "languages": [
        • "string"
        ],
      • "locationAddress": {
        • "addressLine": "string",
        • "addressLine2": "string",
        • "city": "string",
        • "countryCode": "string",
        • "latitude": 0,
        • "longitude": 0,
        • "postCode": "string",
        • "state": "string"
        },
      • "maxCommissionNetRate": 0,
      • "maxCommissionPercent": 0,
      • "minimumNoticeMinutes": 0,
      • "multiProductBookingSupported": true,
      • "name": "string",
      • "pickupId": 0,
      • "priceOptions": [
        • {
          • "id": 0,
          • "label": "string",
          • "maxQuantity": 0,
          • "minQuantity": 0,
          • "price": 0,
          • "priceGroupType": "EACH",
          • "productCode": "string",
          • "seatsUsed": 0
          }
        ],
      • "productCode": "string",
      • "productSeoTags": [
        • {
          • "attrKey": "string",
          • "attrValue": "string",
          • "id": 0,
          • "metaType": "META_NAME",
          • "productCode": "string"
          }
        ],
      • "productType": "ACTIVITY",
      • "qrCodeType": "INTERNAL",
      • "quantityRequired": true,
      • "quantityRequiredMax": 0,
      • "quantityRequiredMin": 0,
      • "shortDescription": "string",
      • "supplierAlias": "string",
      • "supplierId": 0,
      • "supplierName": "string",
      • "tags": [
        • "string"
        ],
      • "taxes": [
        • {
          • "compound": true,
          • "label": "string",
          • "priceInclusive": true,
          • "supplierId": 0,
          • "taxAmount": 0,
          • "taxFeeType": "TAX",
          • "taxPercent": 0,
          • "taxType": "PERCENT"
          }
        ],
      • "terms": "string",
      • "timezone": "string",
      • "unitLabel": "string",
      • "unitLabelPlural": "string",
      • "videos": [
        • {
          • "id": "string",
          • "platform": "string",
          • "url": "string"
          }
        ],
      • "waitListingEnabled": true,
      • "xeroAccount": "string"
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Get product

    Load an existing product by Product Code

    path Parameters
    productCode
    required
    string
    Example: P12345

    Product Code to search for

    Responses

    Response Schema: application/json
    object (Product)

    Product object. Holds general details and settings of a specific tour, activity or event.

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Product PWQF1Y details https://api.rezdy-staging.com/v1/products/PWQF1Y?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {}

    Update product

    Updates a product.

    When updating price options, the full list of existing price options must be supplied in the update. Otherwise the system will remove any missing price options in the request from the product.

    For instance, if a product has 2 price options Adult and Child but the update request only contains Adult, the Child price option will be removed from the product.
    Adding a price option works the same way. If the update request contains an extra price option, it will be added to the product.

    When price option values are updated via API, this will override all existing price in availability (session) to reflect the product price. If a different price in calendar/session is required to the product price, please make the changes to the product directly in your Rezdy account and select do not change session price in the page that follows after saving your changes.,

    path Parameters
    productCode
    required
    string

    product's product code to be updated

    Request Body schema:
    required

    updated product

    advertisedPrice
    number <float>

    General price indication for this product. It represents a display price only, therefore it does not affect a real booking price, which is calculated based on the price options.

    barcodeOutputType
    string
    Enum: "PARTICIPANT" "ORDER"

    Specifies how to output the barcodes when this product is booked. Valid types are:

  • PARTICIPANT: Barcodes will be generated by rezdy for each participant when an booking is created for this product
  • ORDER: Barcodes will be generated by rezdy per booking
  • required
    Array of objects (BookingFieldCreate)

    List of booking fields required for this product.

    confirmMode
    required
    string
    Enum: "MANUAL" "AUTOCONFIRM" "MANUAL_THEN_AUTO" "AUTO_THEN_MANUAL"

    Confirmation mode. Determines if bookings are automatically confirmed or it they are pending.

    confirmModeMinParticipants
    integer <int32>

    If confirmMode is MANUAL_THEN_AUTO or AUTO_THEN_MANUAL, determines the minimum number of participants per booking to trigger the change.

    description
    required
    string

    Long product description, is between 100 and 15000 characters.

    durationMinutes
    integer <int64>

    Duration of the product in minutes.

    internalCode
    string

    Supplier-defined product code, used internally by the supplier.

    minimumNoticeMinutes
    integer <int64>

    Minimum book ahead interval for he product in minutes.

    name
    string

    Product name

    pickupId
    integer <int64>

    Pickup ID for this product.

    Array of objects (PriceOptionCreate)

    List of price options for this product.

    shortDescription
    required
    string

    Product description is between 15 and 240 characters.

    terms
    string

    Specific terms and conditions for this product.

    Responses

    Response Schema:
    object (Product)

    Product object. Holds general details and settings of a specific tour, activity or event.

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "advertisedPrice": 0,
    • "barcodeOutputType": "PARTICIPANT",
    • "bookingFields": [
      • {
        • "fieldType": "String",
        • "label": "string",
        • "listOptions": "string",
        • "requiredPerBooking": true,
        • "requiredPerParticipant": true,
        • "visiblePerBooking": true,
        • "visiblePerParticipant": true
        }
      ],
    • "confirmMode": "MANUAL",
    • "confirmModeMinParticipants": 0,
    • "description": "string",
    • "durationMinutes": 0,
    • "internalCode": "string",
    • "minimumNoticeMinutes": 0,
    • "name": "string",
    • "pickupId": 0,
    • "priceOptions": [
      • {
        • "label": "string",
        • "maxQuantity": 0,
        • "minQuantity": 0,
        • "price": 0,
        • "priceGroupType": "EACH",
        • "productCode": "string",
        • "seatsUsed": 0
        }
      ],
    • "shortDescription": "string",
    • "terms": "string"
    }

    Response samples

    Content type
    {
    • "product": {
      • "additionalInformation": "string",
      • "advertisedPrice": 0,
      • "agentPaymentType": "PAYOUTS",
      • "apiBookingSupported": true,
      • "barcodeOutputType": "PARTICIPANT",
      • "bookingFields": [
        • {
          • "fieldType": "String",
          • "label": "string",
          • "listOptions": "string",
          • "requiredPerBooking": true,
          • "requiredPerParticipant": true,
          • "value": "string",
          • "visiblePerBooking": true,
          • "visiblePerParticipant": true
          }
        ],
      • "bookingMode": "NO_DATE",
      • "cancellationPolicyDays": 0,
      • "charter": true,
      • "commissionIncludesExtras": true,
      • "confirmMode": "MANUAL",
      • "confirmModeMinParticipants": 0,
      • "currency": "AED",
      • "dateCreated": "2019-08-24T14:15:22Z",
      • "dateUpdated": "2019-08-24T14:15:22Z",
      • "description": "string",
      • "durationMinutes": 0,
      • "extras": [
        • {
          • "description": "string",
          • "extraPriceType": "ANY",
          • "id": 0,
          • "image": {
            • "id": 0,
            • "itemUrl": "string",
            • "largeSizeUrl": "string",
            • "mediumSizeUrl": "string",
            • "thumbnailUrl": "string"
            },
          • "name": "string",
          • "price": 0,
          • "quantity": 0
          }
        ],
      • "generalTerms": "string",
      • "images": [
        • {
          • "id": 0,
          • "itemUrl": "string",
          • "largeSizeUrl": "string",
          • "mediumSizeUrl": "string",
          • "thumbnailUrl": "string"
          }
        ],
      • "internalCode": "string",
      • "languages": [
        • "string"
        ],
      • "locationAddress": {
        • "addressLine": "string",
        • "addressLine2": "string",
        • "city": "string",
        • "countryCode": "string",
        • "latitude": 0,
        • "longitude": 0,
        • "postCode": "string",
        • "state": "string"
        },
      • "maxCommissionNetRate": 0,
      • "maxCommissionPercent": 0,
      • "minimumNoticeMinutes": 0,
      • "multiProductBookingSupported": true,
      • "name": "string",
      • "pickupId": 0,
      • "priceOptions": [
        • {
          • "id": 0,
          • "label": "string",
          • "maxQuantity": 0,
          • "minQuantity": 0,
          • "price": 0,
          • "priceGroupType": "EACH",
          • "productCode": "string",
          • "seatsUsed": 0
          }
        ],
      • "productCode": "string",
      • "productSeoTags": [
        • {
          • "attrKey": "string",
          • "attrValue": "string",
          • "id": 0,
          • "metaType": "META_NAME",
          • "productCode": "string"
          }
        ],
      • "productType": "ACTIVITY",
      • "qrCodeType": "INTERNAL",
      • "quantityRequired": true,
      • "quantityRequiredMax": 0,
      • "quantityRequiredMin": 0,
      • "shortDescription": "string",
      • "supplierAlias": "string",
      • "supplierId": 0,
      • "supplierName": "string",
      • "tags": [
        • "string"
        ],
      • "taxes": [
        • {
          • "compound": true,
          • "label": "string",
          • "priceInclusive": true,
          • "supplierId": 0,
          • "taxAmount": 0,
          • "taxFeeType": "TAX",
          • "taxPercent": 0,
          • "taxType": "PERCENT"
          }
        ],
      • "terms": "string",
      • "timezone": "string",
      • "unitLabel": "string",
      • "unitLabelPlural": "string",
      • "videos": [
        • {
          • "id": "string",
          • "platform": "string",
          • "url": "string"
          }
        ],
      • "waitListingEnabled": true,
      • "xeroAccount": "string"
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Delete product

    Deletes a product.

    path Parameters
    productCode
    required
    string

    product's product code to be deleted

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Add product image

    First, a product has to be created usingPOST /products, the response contain a product object upon a successful creation. Use the product code to for the add/delete images URLs.

    Use a standard file upload request (multipart form data) with a file attachment, parameter name is file as the call payload, and also a mandatory filename. If you have multiple images, you need to make one separate call for each image.

    A successful response contains generated image URLs including different image dimension and the image Id. Use the image Id to delete the image, if you want to remove it from the product.

    Request example

    File has to be specified either in the attachment, part of the form-data parameter 'file', or in the attachment, as a form-data parameter 'filename', which is common format for PHP frameworks, which are sending an array of attachments.

    Request:

    POST https://api.rezdy.com/latest/products/P12345/images?apiKey=123456789XYZ
    

    content-type=[multipart/form-data; boundary=----WebKitFormBoundarymDtt4W0lhmAsKFkZ]

    ------WebKitFormBoundarymDtt4W0lhmAsKFkZ
    Content-Disposition: form-data; name="file"; filename="myImage.png"
    Content-Type: image/png
    ...
    IMAGE BINARY DATA
    ...
    ------WebKitFormBoundarymDtt4W0lhmAsKFkZ--
    
    path Parameters
    productCode
    required
    string

    product to add the image to

    Request Body schema: multipart/form-data
    file
    required
    object

    Image file to be uploaded

    filename
    string

    Optional image name override

    Responses

    Response Schema:
    object (Image)

    Image links.

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "img": {
      • "id": 0,
      • "itemUrl": "string",
      • "largeSizeUrl": "string",
      • "mediumSizeUrl": "string",
      • "thumbnailUrl": "string"
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Remove product Image

    Removes product Image. Filename is mandatory. It has to be specified either in the attachment, part of the form-data parameter 'file', or in the attachment, as a form-data parameter 'filename', which is common format for PHP frameworks, which are sending an array of attachments.

    path Parameters
    productCode
    required
    string

    product's product code for the image to be uploaded to

    mediaId
    required
    integer <int64>

    image's id to be uploaded

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Get product pickups

    Gets a list of pickup locations configured for this product.

    path Parameters
    productCode
    required
    string
    Example: P12345

    productCode Product Code to search for

    query Parameters
    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema: application/json
    Array of objects (PickupLocation)
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Product's PWQF1Y (Double dive with sharks) pickups: https://api.rezdy-staging.com/v1/products/PWQF1Y/pickups?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "pickupLocations": [
      • {
        • "locationName": "Divers hotel",
        • "address": "Cape Byron, Byron Bay NSW, Australia",
        • "latitude": -28.6473671,
        • "longitude": 153.601977,
        • "minutesPrior": 30,
        • "additionalInstructions": "Please be ready 15 minute before the pickup time in the hotel lobby area."
        },
      • {
        • "locationName": "Seaside hostel",
        • "address": "Main Beach, Byron Bay NSW, Australia",
        • "latitude": -28.6412831,
        • "longitude": 153.6166691,
        • "minutesPrior": 20,
        • "additionalInstructions": "Please be ready 15 minute before the pickup time in front of the hostel."
        }
      ]
    }

    Rates

    Service to retrieve rate details and their products.

    Search rates

    Searches rates based on rate name and product code. If rateName and productCode are not specified, then it will return all rates belonging to the supplier

    query Parameters
    rateName
    string

    Rate name

    productCode
    string

    Product's product code

    Responses

    Response Schema:
    Array of objects (Rate)
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "rates": [
      • {
        • "name": "string",
        • "productRates": [
          • {
            • "commissionType": "NET_RATE",
            • "netRates": [
              • {
                • "netPrice": 0,
                • "priceOptionLabel": "string"
                }
              ],
            • "percentageCommission": 0,
            • "percentageIncludeExtras": true,
            • "productCode": "string"
            }
          ],
        • "rateId": 0
        }
      ],
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Get rate

    Retrieves a rate based on its ID

    path Parameters
    rateId
    required
    integer <int64>

    Rate ID

    Responses

    Response Schema:
    object (Rate)

    A Rate is used to group products with its corresponding shared rate

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "rate": {
      • "name": "string",
      • "productRates": [
        • {
          • "commissionType": "NET_RATE",
          • "netRates": [
            • {
              • "netPrice": 0,
              • "priceOptionLabel": "string"
              }
            ],
          • "percentageCommission": 0,
          • "percentageIncludeExtras": true,
          • "productCode": "string"
          }
        ],
      • "rateId": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Add product

    Adds a product to the specified rate

    path Parameters
    rateId
    required
    integer <int64>

    Rate ID

    productCode
    required
    string

    Product's product code

    Request Body schema:

    Supplied commission for the product

    commissionType
    string
    Enum: "NET_RATE" "PERCENT"

    Commission type: PERCENTAGE, NET_RATE

    Array of objects (NetRate)

    List of Net rates with its associated price option label e.g. Adult $20, Child $10 etc. This is mandatory if Commission Type is NET_RATE

    percentageCommission
    number <float>

    Percentage value of the commission. This should be mandatory if Commission Type is PERCENTAGE

    percentageIncludeExtras
    boolean

    Includes extras, This is mandatory if Commission Type is PERCENTAGE. If true, the product's extras will be included in the agent commission, otherwise the commission will be calculated based on the product price only.

    productCode
    string

    Product's product code

    Responses

    Response Schema:
    object (Rate)

    A Rate is used to group products with its corresponding shared rate

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "commissionType": "NET_RATE",
    • "netRates": [
      • {
        • "netPrice": 0,
        • "priceOptionLabel": "string"
        }
      ],
    • "percentageCommission": 0,
    • "percentageIncludeExtras": true,
    • "productCode": "string"
    }

    Response samples

    Content type
    {
    • "rate": {
      • "name": "string",
      • "productRates": [
        • {
          • "commissionType": "NET_RATE",
          • "netRates": [
            • {
              • "netPrice": 0,
              • "priceOptionLabel": "string"
              }
            ],
          • "percentageCommission": 0,
          • "percentageIncludeExtras": true,
          • "productCode": "string"
          }
        ],
      • "rateId": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Remove product

    Removes a product from the specified rate

    path Parameters
    rateId
    required
    integer <int64>

    Rate ID

    productCode
    required
    string

    Product's product code

    Responses

    Response Schema:
    object (Rate)

    A Rate is used to group products with its corresponding shared rate

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "rate": {
      • "name": "string",
      • "productRates": [
        • {
          • "commissionType": "NET_RATE",
          • "netRates": [
            • {
              • "netPrice": 0,
              • "priceOptionLabel": "string"
              }
            ],
          • "percentageCommission": 0,
          • "percentageIncludeExtras": true,
          • "productCode": "string"
          }
        ],
      • "rateId": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    PickupList

    Search pickup list

    Searches pickup lists. To retrieve all pick up lists, omit the searchString parameter

    query Parameters
    searchString
    string

    Search string of pickup list name or location name

    Responses

    Response Schema:
    Array of objects (PickupList)
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "pickupListList": [
      • {
        • "additionalNotes": "string",
        • "id": 0,
        • "name": "string",
        • "otherLocationInstructions": "string",
        • "pickupLocations": [
          • {
            • "additionalInstructions": "string",
            • "address": "string",
            • "latitude": 0,
            • "locationName": "string",
            • "longitude": 0,
            • "minutesPrior": 0,
            • "pickupInstructions": "string",
            • "pickupTime": "string"
            }
          ]
        }
      ],
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Create pickup list

    Creates a new pickup list

    Request Body schema:
    required

    New pickup list

    additionalNotes
    string

    Global additional instructions for this pick up list

    id
    integer <int64>

    ID of this pickup

    name
    string

    Name of the pickup location list

    otherLocationInstructions
    string

    Instructions for other locations that are not available in the pickupLocations list. E.g. For customer pick up location requests, a sample instruction for this field would be: 'We will contact you to confirm your pickup location'

    Array of objects (PickupLocation)

    List of all associated pickup locations for this list

    Responses

    Response Schema:
    object (PickupList)

    PickupList object. Contains a list of pickup locations.

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "additionalNotes": "string",
    • "id": 0,
    • "name": "string",
    • "otherLocationInstructions": "string",
    • "pickupLocations": [
      • {
        • "additionalInstructions": "string",
        • "address": "string",
        • "latitude": 0,
        • "locationName": "string",
        • "longitude": 0,
        • "minutesPrior": 0,
        • "pickupInstructions": "string",
        • "pickupTime": "string"
        }
      ]
    }

    Response samples

    Content type
    {
    • "pickupList": {
      • "additionalNotes": "string",
      • "id": 0,
      • "name": "string",
      • "otherLocationInstructions": "string",
      • "pickupLocations": [
        • {
          • "additionalInstructions": "string",
          • "address": "string",
          • "latitude": 0,
          • "locationName": "string",
          • "longitude": 0,
          • "minutesPrior": 0,
          • "pickupInstructions": "string",
          • "pickupTime": "string"
          }
        ]
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Retrieve pickup list

    Retrieves a pickup list

    path Parameters
    pickupListId
    required
    integer <int64>

    Pickup list ID

    Responses

    Response Schema:
    object (PickupList)

    PickupList object. Contains a list of pickup locations.

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "pickupList": {
      • "additionalNotes": "string",
      • "id": 0,
      • "name": "string",
      • "otherLocationInstructions": "string",
      • "pickupLocations": [
        • {
          • "additionalInstructions": "string",
          • "address": "string",
          • "latitude": 0,
          • "locationName": "string",
          • "longitude": 0,
          • "minutesPrior": 0,
          • "pickupInstructions": "string",
          • "pickupTime": "string"
          }
        ]
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Update pickup list

    Updates a pickup list. This service should not be used for partial updates. A full pickup list object with the desired pick up locations should be passed as input

    path Parameters
    pickupListId
    required
    integer <int64>

    Pickup list ID

    Request Body schema:
    required

    Modified pickup list

    additionalNotes
    string

    Global additional instructions for this pick up list

    id
    integer <int64>

    ID of this pickup

    name
    string

    Name of the pickup location list

    otherLocationInstructions
    string

    Instructions for other locations that are not available in the pickupLocations list. E.g. For customer pick up location requests, a sample instruction for this field would be: 'We will contact you to confirm your pickup location'

    Array of objects (PickupLocation)

    List of all associated pickup locations for this list

    Responses

    Response Schema:
    object (PickupList)

    PickupList object. Contains a list of pickup locations.

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "additionalNotes": "string",
    • "id": 0,
    • "name": "string",
    • "otherLocationInstructions": "string",
    • "pickupLocations": [
      • {
        • "additionalInstructions": "string",
        • "address": "string",
        • "latitude": 0,
        • "locationName": "string",
        • "longitude": 0,
        • "minutesPrior": 0,
        • "pickupInstructions": "string",
        • "pickupTime": "string"
        }
      ]
    }

    Response samples

    Content type
    {
    • "pickupList": {
      • "additionalNotes": "string",
      • "id": 0,
      • "name": "string",
      • "otherLocationInstructions": "string",
      • "pickupLocations": [
        • {
          • "additionalInstructions": "string",
          • "address": "string",
          • "latitude": 0,
          • "locationName": "string",
          • "longitude": 0,
          • "minutesPrior": 0,
          • "pickupInstructions": "string",
          • "pickupTime": "string"
          }
        ]
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Delete pickup list

    Deletes a pickup list

    path Parameters
    pickupListId
    required
    integer <int64>

    Pickup ID

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Extra

    Search extra

    Searches extra. To retrieve all extras, omit the searchString parameter

    query Parameters
    searchString
    required
    string

    Search string of extra name

    Responses

    Response Schema:
    Array of objects (ExtraRequest)
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "extras": [
      • {
        • "description": "string",
        • "extraPriceType": "ANY",
        • "id": 0,
        • "name": "string",
        • "price": 0
        }
      ],
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Create extra

    Creates a new extra

    Request Body schema:
    required

    New extra

    description
    string

    Description of the extra

    extraPriceType
    string
    Enum: "ANY" "FIXED" "QUANTITY"

    Price type for this extra. Defines what quantities are allowed and how their price is calculated

    name
    string

    Name of the extra

    price
    number <float>

    Price for a single quantity of this extra

    Responses

    Response Schema:
    object (ExtraRequest)

    Partial optional service or item that can be purchased when booking a specific product

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "description": "string",
    • "extraPriceType": "ANY",
    • "name": "string",
    • "price": 0
    }

    Response samples

    Content type
    {
    • "extra": {
      • "description": "string",
      • "extraPriceType": "ANY",
      • "id": 0,
      • "name": "string",
      • "price": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Retrieve an extra

    Retrieve an extra by Id

    path Parameters
    extraId
    required
    integer <int64>

    Extra ID

    Responses

    Response Schema:
    object (ExtraRequest)

    Partial optional service or item that can be purchased when booking a specific product

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "extra": {
      • "description": "string",
      • "extraPriceType": "ANY",
      • "id": 0,
      • "name": "string",
      • "price": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Update extra

    Updates an extra. The extra ID can change when updating it, since there are business rules to protect the Order and Product consistency.

    path Parameters
    extraId
    required
    integer <int64>

    Extra ID

    Request Body schema:
    required

    Modified extra

    description
    string

    Description of the extra

    extraPriceType
    string
    Enum: "ANY" "FIXED" "QUANTITY"

    Price type for this extra. Defines what quantities are allowed and how their price is calculated

    id
    integer <int64>

    ID of the extra

    name
    string

    Name of the extra

    price
    number <float>

    Price for a single quantity of this extra

    Responses

    Response Schema:
    object (ExtraRequest)

    Partial optional service or item that can be purchased when booking a specific product

    required
    object (RequestStatus)

    Request samples

    Content type
    {
    • "description": "string",
    • "extraPriceType": "ANY",
    • "id": 0,
    • "name": "string",
    • "price": 0
    }

    Response samples

    Content type
    {
    • "extra": {
      • "description": "string",
      • "extraPriceType": "ANY",
      • "id": 0,
      • "name": "string",
      • "price": 0
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Delete extra

    Deletes an extra

    path Parameters
    extraId
    required
    integer <int64>

    Extra ID

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Categories

    Category service to retrieve category details and their products.

    Search categories

    Load all categories matching a search string. If the search string is empty, all categories will be returned. This will only return categories that belong to the company identified from the request's apiKey.

    query Parameters
    search
    string

    String to search for. It will be searched in category name

    visible
    boolean

    Return only public categories if it is set to true, only private if it is set to false, or both if it not set.

    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema: application/json
    Array of objects (Category)
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Search categories: https://api.rezdy-staging.com/v1/categories?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {}

    Get category

    Load an existing category by Id

    path Parameters
    categoryId
    required
    integer <int64>

    Category ID

    Responses

    Response Schema: application/json
    object (Category)

    A Category is used to group products

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get category 9091: https://api.rezdy-staging.com/v1/categories/9091?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {}

    List category products

    Load all products within a category.

    path Parameters
    categoryId
    required
    integer <int64>

    The category id.

    query Parameters
    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema: application/json
    Array of objects (Product)
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    List category 9091 products: https://api.rezdy-staging.com/v1/categories/9091/products?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {}

    Add product to category

    Adds a product to an existing category

    path Parameters
    categoryId
    required
    integer <int64>
    productCode
    required
    string

    Responses

    Response Schema: application/json
    object (Rate)

    A Rate is used to group products with its corresponding shared rate

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Add product P00TNX to category 9091 responds with category products, or 406 status if product already is in this category: PUT https://api.rezdy-staging.com/v1/categories/9091/products/P00TNX?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "rate": {
      • "rateId": 9091,
      • "name": "Demo supplier products",
      • "productRates": [
        • {
          • "productCode": "PWQF1Y"
          },
        • {
          • "productCode": "P00TNX"
          }
        ]
      }
    }

    Remove product from category

    Removes a product from an existing category

    path Parameters
    categoryId
    required
    integer <int64>
    productCode
    required
    string

    Responses

    Response Schema: application/json
    object (Rate)

    A Rate is used to group products with its corresponding shared rate

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Remove product P00TNX from category 9091, responds with remaining category products: DELETE https://api.rezdy-staging.com/v1/categories/9091/products/P00TNX?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "rate": {
      • "rateId": 9091,
      • "name": "Demo supplier products",
      • "productRates": [
        • {
          • "productCode": "PWQF1Y"
          }
        ]
      }
    }

    Customers

    Customer service to list, create and delete customers.

    Search customers

    Search customers in your account

    query Parameters
    search
    string

    String to search for. It will be searched in First & Last name, company name and email.

    limit
    integer <int32>

    How many results are returned per request. Maximum is 100, which also a default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema: application/json
    Array of objects (Customer)
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Search customers with name 'Rick Sanchez': https://api.rezdy-staging.com/v1/customers?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5&search=Rick Sanchez

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "customers": [
      • {
        • "id": 29647,
        • "firstName": "Rick",
        • "lastName": "Sanchez",
        • "name": "Rick Sanchez",
        • "phone": "+61484123456"
        }
      ]
    }

    Create customer

    Create a new customer

    Request Body schema: application/json
    aboutUs
    string

    How did you hear about us?

    addressLine
    string

    Address

    addressLine2
    string

    Extended Address

    city
    string

    City/Town/Suburb

    companyName
    string

    Company name

    countryCode
    string

    2 letter ISO country code

    dob
    string <date-time>

    Date of birth

    email
    string

    Email

    fax
    string

    Fax number

    firstName
    string

    First name

    gender
    string
    Enum: "MALE" "FEMALE"

    Gender: MALE or FEMALE

    id
    integer <int64>

    Rezdy internal ID of the customer

    lastName
    string

    Last Name

    marketing
    boolean

    Agree to receive marketing emails

    middleName
    string

    Middle name

    mobile
    string

    Mobile phone number

    name
    string

    Full name - generated from first/middle/last names

    newsletter
    boolean

    Subscribe to the newsletter

    phone
    string

    Preferred Phone number

    postCode
    string

    Postcode / ZIP

    preferredLanguage
    string

    Preferred language. Should be a 2 letter ISO country code

    skype
    string

    Skype alias

    state
    string

    State/County/Region

    title
    string
    Enum: "MR" "MS" "MRS" "MISS"

    Title

    Responses

    Response Schema: application/json
    object (Customer)

    The customer is the person making the booking, and most of the time paying for it.
    It differs from Participants, who are the people attending a tour

    required
    object (RequestStatus)

    Request samples

    Content type
    application/json

    Create a new customer

    {
    • "email": "morthysmith@test.com",
    • "firstName": "Morty",
    • "lastName": "Smith",
    • "mobile": "+6148123456"
    }

    Response samples

    Content type
    application/json

    Create customer

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "customer": {
      • "id": 29705,
      • "firstName": "Morty",
      • "lastName": "Smith",
      • "name": "Morty Smith",
      • "email": "morthysmith@test.com",
      • "mobile": "+6148123456"
      }
    }

    Get customer

    Load an existing customer by Id

    path Parameters
    customerId
    required
    integer <int64>

    Id to search for

    Responses

    Response Schema: application/json
    object (Customer)

    The customer is the person making the booking, and most of the time paying for it.
    It differs from Participants, who are the people attending a tour

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get customer: https://api.rezdy-staging.com/v1/customers/29705?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "customer": {
      • "id": 29705,
      • "firstName": "Morty",
      • "lastName": "Smith",
      • "name": "Morty Smith",
      • "email": "morthysmith@test.com",
      • "mobile": "+6148123456"
      }
    }

    Delete customer

    Delete a customer

    path Parameters
    customerId
    required
    string

    Customer Id to delete

    Responses

    Response Schema: application/json
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Delete customer: DELETE https://api.rezdy-staging.com/v1/customers/29705?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      }
    }

    Vouchers

    Service to retrieve voucher details.

    Search vouchers

    Search vouchers in your account

    query Parameters
    search
    string

    String to search for. It will be searched in voucher codes

    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    Array of objects (Voucher)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "vouchers": [
      • {
        • "code": "string",
        • "expiryDate": "2019-08-24T14:15:22Z",
        • "internalNotes": "string",
        • "internalReference": "string",
        • "issueDate": "2019-08-24T14:15:22Z",
        • "sourceOrder": "string",
        • "status": "ISSUED",
        • "value": 0,
        • "valueType": "VALUE_LIMITPRODUCT"
        }
      ]
    }

    Get voucher

    Load an existing voucher by Voucher Code

    path Parameters
    voucherCode
    required
    string

    Voucher code to search for.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    object (Voucher)

    A Voucher is a gift card that can be used to pay for a booking.
    It can also be generated by a booking when a customer buys a Gift Card.
    This is not a "confirmation voucher", you should use Booking.orderNumber as a confirmation code to show to customers.

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "voucher": {
      • "code": "string",
      • "expiryDate": "2019-08-24T14:15:22Z",
      • "internalNotes": "string",
      • "internalReference": "string",
      • "issueDate": "2019-08-24T14:15:22Z",
      • "sourceOrder": "string",
      • "status": "ISSUED",
      • "value": 0,
      • "valueType": "VALUE_LIMITPRODUCT"
      }
    }

    Companies

    Get company by alias

    Load an existing Company by it's alias in Rezdy. Company alias is not a permanent identifier and can change over time.

    path Parameters
    companyAlias
    required
    string

    Company alias to search for

    Responses

    Response Schema: application/json
    object (Company)

    Company object. Holds general details and information about a specific company.

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get company 'API specification demo supplier' by their alias: https://api.rezdy-staging.com/v1/companies/apispecificationdemosupplierdonotedit?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "companies": [
      • {
        • "alias": "apispecificationdemosupplierdonotedit",
        • "companyName": "API specification demo supplier (DO NOT EDIT)",
        • "firstName": "Dusan",
        • "lastName": "Zahoransky",
        • "address": {
          • "addressLine": "123 CommonwWealth Street",
          • "postCode": "2000",
          • "city": "Sydney",
          • "state": "NSW",
          • "countryCode": "au",
          • "latitude": -33.880562,
          • "longitude": 151.2106793
          },
        • "destinationName": "Sydney",
        • "destinationCountryCode": "au",
        • "destinationPath": "South Pacific,Australia,New South Wales,Sydney",
        • "currency": "AUD",
        • "locale": "en_au",
        • "timezone": "Australia/Sydney",
        • "category": "Eco-Tours",
        • "companyDescription": "Rezdy API demo supplier.",
        • "phone": "+61484123456",
        • "mobile": "+61484123456",
        • "fax": "",
        • "skype": "",
        • "openingHours": "08:00 - 17:00",
        • "facebookPage": "",
        • "yelp": "",
        • "instagram": "",
        • "pinterest": "",
        • "youtubeChannel": "",
        • "tripAdvisor": "",
        • "twitter": "",
        • "website": "",
        • "bookingSystem": "rezdy.com"
        }
      ]
    }

    Get company by name

    Load an existing Company by it's name in Rezdy. Company name must be given in full name.

    path Parameters
    companyName
    required
    string

    Company name to search for

    Responses

    Response Schema: application/json
    object (Company)

    Company object. Holds general details and information about a specific company.

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get company 'API specification demo supplier (DO NOT EDIT)' by their name: https://api.rezdy-staging.com/v1/companies/name/API%20specification%20demo%20supplier?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "companies": [
      • {
        • "alias": "apispecificationdemosupplierdonotedit",
        • "companyName": "API specification demo supplier (DO NOT EDIT)",
        • "firstName": "Dusan",
        • "lastName": "Zahoransky",
        • "address": {
          • "addressLine": "123 CommonwWealth Street",
          • "postCode": "2000",
          • "city": "Sydney",
          • "state": "NSW",
          • "countryCode": "au",
          • "latitude": -33.880562,
          • "longitude": 151.2106793
          },
        • "destinationName": "Sydney",
        • "destinationCountryCode": "au",
        • "destinationPath": "South Pacific,Australia,New South Wales,Sydney",
        • "currency": "AUD",
        • "locale": "en_au",
        • "timezone": "Australia/Sydney",
        • "category": "Eco-Tours",
        • "companyDescription": "Rezdy API demo supplier.",
        • "phone": "+61484123456",
        • "mobile": "+61484123456",
        • "fax": "",
        • "skype": "",
        • "openingHours": "08:00 - 17:00",
        • "facebookPage": "",
        • "yelp": "",
        • "instagram": "",
        • "pinterest": "",
        • "youtubeChannel": "",
        • "tripAdvisor": "",
        • "twitter": "",
        • "website": "",
        • "bookingSystem": "rezdy.com"
        }
      ]
    }

    Bookings

    Booking service to list, create and cancel bookings.

    Search bookings

    Search bookings in your account

    query Parameters
    orderStatus
    string
    Enum: "PROCESSING" "NEW" "ON_HOLD" "PENDING_SUPPLIER" "PENDING_CUSTOMER" "CONFIRMED" "CANCELLED" "ABANDONED_CART"

    Order status to filter results

    search
    string

    String to search for. It will be searched in Order number, Customer name, Agent code and payment transaction codes (I.e. voucher Code).

    productCode
    Array of strings unique
    Example: productCode=P12345

    Product code, to only load bookings for a specific product. Multiple values allowed: &productCode=P11111&productCode=P22222

    minTourStartTime
    string
    Example: minTourStartTime=2014-03-01T00:00:00Z

    Only load bookings with a booked time that starts on or after this time. This is not the booking creation date, it is the booked date. ISO 8601 format

    maxTourStartTime
    string
    Example: maxTourStartTime=2014-03-01T00:00:00Z

    Only load bookings with a booked time that starts before or on this time. This is not the booking creation date, it is the booked date. ISO 8601 format

    updatedSince
    string
    Example: updatedSince=2014-03-01T00:00:00Z

    Only load bookings updated after this time. ISO 8601 format. When an order is created, the dateCreated field is set to the current date and the dateUpdated field is empty.
    Thus using updatedSince will return results of orders that have been updated since the specified date/time, but will not include orders that have been created and not updated.

    minDateCreated
    string
    Example: minDateCreated=2014-03-01T00:00:00Z

    Only load bookings created on or after this date, whether they have been updated or not. ISO 8601 format

    maxDateCreated
    string
    Example: maxDateCreated=2014-03-01T00:00:00Z

    Only load bookings created on or before this date, whether they have been updated or not. ISO 8601 format.

    resellerReference
    string

    Only load bookings with specified resellerReference

    limit
    integer <int32>

    How many results are returned per request. Maximum is 100, which also a default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return.

    Responses

    Response Schema: application/json
    Array of objects (Booking)
    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Search confirmed bookings: https://api.rezdy-staging.com/v1/bookings?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5&orderStatus=CONFIRMED

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "bookings": [
      • {
        • "orderNumber": "RX1N6HC",
        • "status": "CONFIRMED",
        • "supplierId": 13398,
        • "supplierName": "API specification demo supplier (DO NOT EDIT)",
        • "supplierAlias": "apispecificationdemosupplierdonotedit",
        • "resellerId": 13399,
        • "resellerName": "API specification demo agent (DO NOT EDIT)",
        • "resellerAlias": "apispecificationdemoagentdonotedit",
        • "customer": {
          • "id": 29650,
          • "firstName": "Rick",
          • "lastName": "Sanchez",
          • "name": "Rick Sanchez",
          • "phone": "+61484123456"
          },
        • "items": [
          • {
            • "productName": "Double dive with sharks",
            • "productCode": "PWQF1Y",
            • "startTime": "2025-09-04T23:00:00Z",
            • "endTime": "2025-09-05T02:00:00Z",
            • "startTimeLocal": "2025-09-05 09:00:00",
            • "endTimeLocal": "2025-09-05 12:00:00",
            • "quantities": [
              • {
                • "optionLabel": "Adult",
                • "optionPrice": 250,
                • "value": 1
                }
              ],
            • "totalQuantity": 1,
            • "amount": 250,
            • "extras": [ ],
            • "participants": [
              • {
                • "fields": [
                  • {
                    • "label": "First Name",
                    • "value": "Rick"
                    },
                  • {
                    • "label": "Last Name",
                    • "value": "Sanchez"
                    },
                  • {
                    • "label": "Certification level"
                    },
                  • {
                    • "label": "Certification number"
                    },
                  • {
                    • "label": "Certification agency"
                    }
                  ]
                }
              ],
            • "subtotal": 250,
            • "pickupLocation": {
              • "locationName": "Hotel by the sea",
              • "pickupInstructions": "Call us on +61123456 to arrange a pickup from a custom pickup request not listed among the pickup locations.\r\nPlease be ready 15 minute before the pickup time."
              }
            }
          ],
        • "totalAmount": 250,
        • "totalCurrency": "AUD",
        • "totalPaid": 250,
        • "totalDue": 0,
        • "dateCreated": "2025-09-03T00:00:04Z",
        • "dateConfirmed": "2025-09-03T00:00:04Z",
        • "datePaid": "2025-09-03T00:00:04Z",
        • "payments": [
          • {
            • "type": "CASH",
            • "amount": 250,
            • "currency": "AUD",
            • "date": "2025-09-03T00:00:04Z",
            • "label": "Paid in cash to API specification demo company",
            • "recipient": "RESELLER"
            }
          ],
        • "fields": [
          • {
            • "label": "Barcode",
            • "value": "RX1N6HC"
            }
          ],
        • "source": "MARKETPLACE_PREF_RATE",
        • "resellerSource": "API",
        • "sourceChannel": "APISPECIFICATIONDEMOAGENTDONOTEDIT",
        • "commission": 25,
        • "vouchers": [ ],
        • "barcodeType": "QR_CODE"
        }
      ]
    }

    Create booking

    Create a new booking. Many of payload fields are not required and will be calculated if not specified. Please check the example request payloads for different booking scenarios.

    Request Body schema: application/json
    barcodeType
    string
    Enum: "TEXT" "CODE_39" "CODE_128" "QR_CODE" "EAN_8" "EAN_13" "ITF"

    Declares the redemption code format customers will receive if the booking was created with barcodes.

    comments
    string

    Special requirements entered by the customer. Visible to both customer and supplier.

    coupon
    string

    Promo code that has been applied to this booking

    object (CreditCard)

    Credit card details.

    Used to send payment details for a booking

    object (Customer)

    The customer is the person making the booking, and most of the time paying for it.
    It differs from Participants, who are the people attending a tour

    datePaid
    string <date-time>

    Date this booking was fully paid

    dateReconciled
    string <date-time>

    Date this booking was reconciled with the agent

    Array of objects (BookingField)

    List of custom fields that are required "once per booking" by all the products in this booking

    internalNotes
    string

    Comments only visible internally by the supplier

    Array of objects (BookingItemCreate)

    List of items in this booking. A booking can contain multiple products. Each BookingItem is a separate product with its own set of quantities and participant details.

    orderNumber
    string

    Order number. This is the number you should give to customers and print on booking confirmations. Order number is generated by the system, therefore, even if it is specified in the booking request, it will be overwritten.

    paymentOption
    string
    Enum: "CREDITCARD" "PAYPAL" "BANKTRANSFER" "CASH" "INVOICE" "EXTERNAL" "ALIPAY"

    Payment option selected by the customer when making an online booking

    Array of objects (BookingPayment)

    List of payments recorded for this booking

    resellerComments
    string

    Comments only visible by the agent and the supplier. This should be used by the agent to send voucher numbers/redemption codes to suppliers.

    resellerId
    integer <int64>

    Rezdy internal ID of the agent company attached to this booking

    resellerReference
    string

    External reseller reference, can be used to pass internal booking number. This reference will be shown to a supplier, also it will appear on reports and can be used to filter orders. Maxiumum number of characters is 30

    resellerSource
    string
    Enum: "ONLINE" "INTERNAL" "PARTNERS" "COMMUNITY" "MARKETPLACE" "MARKETPLACE_PREF_RATE" "API"

    Source of this booking viewed from the agent

    object (User)

    Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company.

    sendNotifications
    boolean
    Default: true

    Flag to control if a booking confirmation email should be send to the customer after this booking is created.
    This will also send other types of customer notifications when setup by the supplier (I.e. SMS, Gift cards)

    source
    string
    Enum: "ONLINE" "INTERNAL" "PARTNERS" "COMMUNITY" "MARKETPLACE" "MARKETPLACE_PREF_RATE" "API"

    Source of this booking viewed from the supplier

    sourceChannel
    string

    Agent code defined by the supplier

    sourceReferrer
    string

    Referrer code

    status
    string
    Enum: "PROCESSING" "NEW" "ON_HOLD" "PENDING_SUPPLIER" "PENDING_CUSTOMER" "CONFIRMED" "CANCELLED" "ABANDONED_CART"

    Status of this booking

    surcharge
    number <float>

    Credit card surcharge calculated for this booking

    totalAmount
    number <float>

    Total booking amount

    vouchers
    Array of strings

    List of vouchers (Gift cards) that have been redeemed to pay for this booking

    Responses

    Response Schema: application/json
    object (Booking)

    Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.
    A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier.

    required
    object (RequestStatus)

    Request samples

    Content type
    application/json
    Example

    Example of creating a booking with API features including pickup, extras, order and participant level booking fields, comments, discount coupon, participant level barcodes

    {
    • "comments": "Here come comments that are visible to you, but not to customers",
    • "customer": {
      • "firstName": "Rick",
      • "lastName": "Sanchez",
      • "phone": "+61484123456",
      • "email": "ricksanchez@test.com"
      },
    • "items": [
      • {
        • "productCode": "PWQF1Y",
        • "startTimeLocal": "2025-10-01 09:00:00",
        • "quantities": [
          • {
            • "optionLabel": "Adult",
            • "value": 2
            }
          ],
        • "extras": [
          • {
            • "name": "Underwater camera rental",
            • "quantity": 1
            }
          ],
        • "participants": [
          • {
            • "fields": [
              • {
                • "label": "First Name",
                • "value": "Rick"
                },
              • {
                • "label": "Last Name",
                • "value": "Sanchez"
                },
              • {
                • "label": "Certification level",
                • "value": "Open Water"
                },
              • {
                • "label": "Certification number",
                • "value": "123456798"
                },
              • {
                • "label": "Certification agency",
                • "value": "PADI"
                },
              • {
                • "label": "Barcode",
                • "value": "123"
                }
              ]
            },
          • {
            • "fields": [
              • {
                • "label": "First Name",
                • "value": "Morty"
                },
              • {
                • "label": "Last Name",
                • "value": "Smith"
                },
              • {
                • "label": "Certification level",
                • "value": "Rescue Diver"
                },
              • {
                • "label": "Certification number",
                • "value": "111222333"
                },
              • {
                • "label": "Certification agency",
                • "value": "SDI"
                },
              • {
                • "label": "Barcode",
                • "value": "456"
                }
              ]
            }
          ]
        }
      ],
    • "fields": [
      • {
        • "label": "Special Requirements",
        • "value": "Gluten free lunch for Morty"
        }
      ],
    • "pickupLocation": {
      • "locationName": "Divers hotel"
      },
    • "payments": [
      • {
        • "amount": 515,
        • "type": "CASH",
        • "label": "Paid in cash to API specification demo"
        }
      ]
    }

    Response samples

    Content type
    application/json
    Example

    Example of creating a booking with API features including pickup, extras, order and participant level booking fields, comments, discount coupon, participant level barcodes

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "booking": {
      • "orderNumber": "RSQ6K2F",
      • "status": "CONFIRMED",
      • "supplierId": 13398,
      • "supplierName": "API specification demo supplier (DO NOT EDIT)",
      • "supplierAlias": "apispecificationdemosupplierdonotedit",
      • "customer": {
        • "id": 29769,
        • "firstName": "Rick",
        • "lastName": "Sanchez",
        • "name": "Rick Sanchez",
        • "email": "ricksanchez@test.com",
        • "phone": "+61484123456"
        },
      • "items": [
        • {
          • "productName": "Double dive with sharks",
          • "productCode": "PWQF1Y",
          • "startTime": "2025-09-30T23:00:00Z",
          • "endTime": "2025-10-01T02:00:00Z",
          • "startTimeLocal": "2025-10-01 09:00:00",
          • "endTimeLocal": "2025-10-01 12:00:00",
          • "quantities": [
            • {
              • "optionLabel": "Adult",
              • "optionPrice": 250,
              • "value": 2
              }
            ],
          • "totalQuantity": 2,
          • "amount": 500,
          • "extras": [
            • {
              • "name": "Underwater camera rental",
              • "price": 15,
              • "extraPriceType": "ANY",
              • "quantity": 1
              }
            ],
          • "participants": [
            • {
              • "fields": [
                • {
                  • "label": "First Name",
                  • "value": "Rick"
                  },
                • {
                  • "label": "Last Name",
                  • "value": "Sanchez"
                  },
                • {
                  • "label": "Barcode",
                  • "value": "RSQ6K2F*79309"
                  },
                • {
                  • "label": "Certification level",
                  • "value": "Open Water"
                  },
                • {
                  • "label": "Certification number",
                  • "value": "123456798"
                  },
                • {
                  • "label": "Certification agency",
                  • "value": "PADI"
                  },
                • {
                  • "label": "Barcode",
                  • "value": "123"
                  }
                ]
              },
            • {
              • "fields": [
                • {
                  • "label": "First Name",
                  • "value": "Morty"
                  },
                • {
                  • "label": "Last Name",
                  • "value": "Smith"
                  },
                • {
                  • "label": "Barcode",
                  • "value": "RSQ6K2F*79308"
                  },
                • {
                  • "label": "Certification level",
                  • "value": "Rescue Diver"
                  },
                • {
                  • "label": "Certification number",
                  • "value": "111222333"
                  },
                • {
                  • "label": "Certification agency",
                  • "value": "SDI"
                  },
                • {
                  • "label": "Barcode",
                  • "value": "456"
                  }
                ]
              }
            ],
          • "subtotal": 515,
          • "pickupLocation": {
            • "pickupInstructions": "Call us on +61123456 to arrange a pickup from a custom pickup request not listed among the pickup locations.\r\nPlease be ready 15 minute before the pickup time."
            }
          }
        ],
      • "totalAmount": 515,
      • "totalCurrency": "AUD",
      • "totalPaid": 515,
      • "totalDue": 0,
      • "dateCreated": "2021-09-20T04:56:34Z",
      • "dateConfirmed": "2021-09-20T04:56:33.562Z",
      • "datePaid": "2021-09-20T04:56:33.562Z",
      • "comments": "Here come comments that are visible to you, but not to customers",
      • "payments": [
        • {
          • "type": "CASH",
          • "amount": 515,
          • "currency": "AUD",
          • "date": "2021-09-20T04:56:33.566Z",
          • "label": "Paid in cash to API specification demo",
          • "recipient": "SUPPLIER"
          }
        ],
      • "fields": [
        • {
          • "label": "Barcode",
          • "value": "RSQ6K2F"
          },
        • {
          • "label": "Special Requirements",
          • "value": "Gluten free lunch for Morty"
          }
        ],
      • "source": "API",
      • "vouchers": [ ],
      • "barcodeType": "QR_CODE"
      }
    }

    Quote booking

    Get a quote for a booking. Use this service to validate your Booking object before making the actual booking.
    Business rules will be validated, and all amounts and totals will be populated.
    It is not a Booking: It does not have any status or booking number. A Quote does not reserve any seat.

    Request Body schema: application/json
    object (User)

    Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company.

    object (Customer)

    The customer is the person making the booking, and most of the time paying for it.
    It differs from Participants, who are the people attending a tour

    Array of objects (BookingField)

    List of custom fields that are required "once per booking" by all the products in this booking

    internalNotes
    string

    Comments only visible internally by the supplier

    Array of objects (BookingItemCreate)

    List of items in this booking. A booking can contain multiple products. Each BookingItem is a separate product with its own set of quantities and participant details.

    orderNumber
    string

    Order number. This is the number you should give to customers and print on booking confirmations. Order number is generated by the system, therefore, even if it is specified in the booking request, it will be overwritten.

    resellerComments
    string

    Comments only visible by the agent and the supplier. This should be used by the agent to send voucher numbers/redemption codes to suppliers.

    resellerId
    integer <int64>

    Rezdy internal ID of the agent company attached to this booking

    resellerReference
    string

    External reseller reference, can be used to pass internal booking number. This reference will be shown to a supplier, also it will appear on reports and can be used to filter orders. Maxiumum number of characters is 30

    object (User)

    Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company.

    status
    string
    Enum: "PROCESSING" "NEW" "ON_HOLD" "PENDING_SUPPLIER" "PENDING_CUSTOMER" "CONFIRMED" "CANCELLED" "ABANDONED_CART"

    Status of this booking

    Responses

    Response Schema: application/json
    object (Booking)

    Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.
    A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier.

    required
    object (RequestStatus)

    Request samples

    Content type
    application/json

    Example of quote a manual payment booking with minimalistic payload

    {
    • "customer": {
      • "firstName": "Rick",
      • "lastName": "Sanchez",
      • "phone": "+61484123456"
      },
    • "items": [
      • {
        • "productCode": "PWQF1Y",
        • "startTimeLocal": "2025-10-01 09:00:00",
        • "quantities": [
          • {
            • "optionLabel": "Adult",
            • "value": 1
            }
          ]
        }
      ],
    • "pickupLocation": {
      • "locationName": "Divers hotel"
      },
    • "payments": [
      • {
        • "amount": 250,
        • "type": "CASH",
        • "label": "Paid in cash to API specification demo company"
        }
      ]
    }

    Response samples

    Content type
    application/json

    Quote booking

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "booking": {
      • "supplierId": 13398,
      • "supplierName": "API specification demo supplier (DO NOT EDIT)",
      • "supplierAlias": "apispecificationdemosupplierdonotedit",
      • "resellerId": 13399,
      • "resellerName": "API specification demo agent (DO NOT EDIT)",
      • "resellerAlias": "apispecificationdemoagentdonotedit",
      • "customer": {
        • "firstName": "Rick",
        • "lastName": "Sanchez",
        • "name": "Rick Sanchez",
        • "phone": "+61484123456"
        },
      • "items": [
        • {
          • "productName": "Double dive with sharks",
          • "productCode": "PWQF1Y",
          • "startTime": "2025-09-30T23:00:00Z",
          • "endTime": "2025-10-01T02:00:00Z",
          • "startTimeLocal": "2025-10-01 09:00:00",
          • "endTimeLocal": "2025-10-01 12:00:00",
          • "quantities": [
            • {
              • "optionLabel": "Adult",
              • "optionPrice": 250,
              • "value": 1
              }
            ],
          • "totalQuantity": 1,
          • "amount": 250,
          • "extras": [ ],
          • "participants": [
            • {
              • "fields": [
                • {
                  • "label": "First Name",
                  • "value": "Rick"
                  },
                • {
                  • "label": "Last Name",
                  • "value": "Sanchez"
                  },
                • {
                  • "label": "Certification level"
                  },
                • {
                  • "label": "Certification number"
                  },
                • {
                  • "label": "Certification agency"
                  }
                ]
              }
            ],
          • "subtotal": 250,
          • "pickupLocation": {
            • "pickupInstructions": "Call us on +61123456 to arrange a pickup from a custom pickup request not listed among the pickup locations.\r\nPlease be ready 15 minute before the pickup time."
            }
          }
        ],
      • "totalAmount": 250,
      • "totalCurrency": "AUD",
      • "totalPaid": 250,
      • "totalDue": 0,
      • "payments": [
        • {
          • "type": "CASH",
          • "amount": 250,
          • "label": "Paid in cash to API specification demo agent",
          • "recipient": "RESELLER"
          }
        ],
      • "fields": [
        • {
          • "label": "Barcode"
          }
        ],
      • "source": "MARKETPLACE_PREF_RATE",
      • "resellerSource": "API",
      • "commission": 25,
      • "vouchers": [ ],
      • "barcodeType": "QR_CODE"
      }
    }

    Get booking

    Load an existing booking by Order Number

    path Parameters
    orderNumber
    required
    string
    Example: R123456

    Order number to search

    Responses

    Response Schema: application/json
    object (Booking)

    Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.
    A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier.

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get booking RKM1ULT: https://api.rezdy-staging.com/v1/bookings/RKM1ULT?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "version": "v1"
      },
    • "booking": {
      • "orderNumber": "RKM1ULT",
      • "status": "CONFIRMED",
      • "supplierId": 13398,
      • "supplierName": "API specification demo supplier (DO NOT EDIT)",
      • "supplierAlias": "apispecificationdemosupplierdonotedit",
      • "resellerId": 13399,
      • "resellerName": "API specification demo agent (DO NOT EDIT)",
      • "resellerAlias": "apispecificationdemoagentdonotedit",
      • "customer": {
        • "id": 29692,
        • "firstName": "Rick",
        • "lastName": "Sanchez",
        • "name": "Rick Sanchez",
        • "phone": "+61484123456"
        },
      • "items": [
        • {
          • "productName": "Double dive with sharks",
          • "productCode": "PWQF1Y",
          • "startTime": "2025-09-30T23:00:00Z",
          • "endTime": "2025-10-01T02:00:00Z",
          • "startTimeLocal": "2025-10-01 09:00:00",
          • "endTimeLocal": "2025-10-01 12:00:00",
          • "quantities": [
            • {
              • "optionLabel": "Adult",
              • "optionPrice": 250,
              • "value": 1
              }
            ],
          • "totalQuantity": 1,
          • "amount": 250,
          • "extras": [ ],
          • "participants": [
            • {
              • "fields": [
                • {
                  • "label": "First Name",
                  • "value": "Rick"
                  },
                • {
                  • "label": "Last Name",
                  • "value": "Sanchez"
                  },
                • {
                  • "label": "Certification level"
                  },
                • {
                  • "label": "Certification number"
                  },
                • {
                  • "label": "Certification agency"
                  }
                ]
              }
            ],
          • "subtotal": 250,
          • "pickupLocation": {
            • "pickupInstructions": "Call us on +61123456 to arrange a pickup from a custom pickup request not listed among the pickup locations.\r\nPlease be ready 15 minute before the pickup time."
            }
          }
        ],
      • "totalAmount": 250,
      • "totalCurrency": "AUD",
      • "totalPaid": 250,
      • "totalDue": 0,
      • "dateCreated": "2025-09-09T02:14:12Z",
      • "dateConfirmed": "2025-09-09T02:14:12Z",
      • "datePaid": "2025-09-09T02:14:12Z",
      • "payments": [
        • {
          • "type": "CASH",
          • "amount": 250,
          • "currency": "AUD",
          • "date": "2025-09-09T02:14:12Z",
          • "label": "Paid in cash to API specification demo agent",
          • "recipient": "RESELLER"
          }
        ],
      • "fields": [
        • {
          • "label": "Barcode",
          • "value": "RKM1ULT"
          }
        ],
      • "source": "MARKETPLACE_PREF_RATE",
      • "resellerSource": "API",
      • "sourceChannel": "APISPECIFICATIONDEMOAGENTDONOTEDIT",
      • "commission": 25,
      • "vouchers": [ ],
      • "barcodeType": "QR_CODE"
      }
    }

    Update booking

    When implementing booking update take into consideration below:

    • only certain fields can currently be updated using API
    • only manual payment bookings can be updated
    • update booking in API triggers webhooks and e-mail notifications in the same way as the order update through UI
    • good practice is to retrieve the full booking object either from create or get booking response, update the necessary fields and pass it whole back to the booking update service. In the future we might support updates of additional fields e.g. add and delete of participants. If you don't send the participants array in the request, we will recognize it as the participants deletion and remove the participant from the existing order
    • order of the items in arrays have to be preserved for the following fields "items", "participants", since no ids are exposed in the API and thus are matched based on the position in the array again the existing booking object
    • agent can update supplier orders only if the supplier allow them to edit orders when sharing their products

    The service method does not support a partial update, full booking object, as it was retrieved from the booking create or search services, has to be send back to the request payload. Otherwise, the properties or relations which are currently supported (see below) and they are not sent, will be deleted. Order of the items in arrays have to be preserved for the following fields 'items', 'participants'.

    Currently supported fields are:

    • Booking.customer - all customer data can be updated
    • Booking.field - all 'per booking' booking fields values
    • Booking.item.participant.field - all 'per participant' booking fields values
    • Booking.resellerComments - both the booking agent and the supplier can update the booking resellerComments
    • Booking.resellerReference - both the booking agent and the supplier can update the booking resellerReference
    • Booking.items.pickupLocation.locationName - both the booking agent and the supplier can update the booking pickup location

    For the sample requests provided in the right panel, consider the booking object below being retrieved from a POST order or GET order methods:

    {
        "requestStatus": {
            "success": true,
            "version": "v1"
        },
        "booking": {
            "orderNumber": "RSKCJ1K",
            "status": "CONFIRMED",
            "supplierId": 61,
            "supplierName": "SUPPLIER_PREMIUM_AU",
            "customer": {
                "id": 2,
                "firstName": "Dusan",
                "lastName": "Zahoransky",
                "name": "Dusan Zahoransky",
                "email": "sample@test.com"
            },
            "items": [
                {
                    "productName": "activity i session seats pp adult 100f",
                    "productCode": "P123456",
                    "startTime": "2017-01-19T09:00:00Z",
                    "endTime": "2017-01-19T11:00:00Z",
                    "startTimeLocal": "2017-01-19 20:00:00",
                    "endTimeLocal": "2017-01-19 22:00:00",
                    "quantities": [
                        {
                            "optionLabel": "Adult",
                            "optionPrice": 100,
                            "value": 1
                        }
                    ],
                    "totalQuantity": 1,
                    "amount": 100,
                    "extras": [
                    ],
                    "participants": [
                        {
                            "fields": [
                                {
                                    "label": "First Name",
                                    "value": "Janko",
                                    "requiredPerParticipant": false,
                                    "requiredPerBooking": false,
                                    "visiblePerParticipant": false,
                                    "visiblePerBooking": false
                                },
                                {
                                    "label": "Last Name",
                                    "value": "Hrasko",
                                    "requiredPerParticipant": false,
                                    "requiredPerBooking": false,
                                    "visiblePerParticipant": false,
                                    "visiblePerBooking": false
                                }
                            ]
                        }
                    ],
                    "subtotal": 100,
                    "vouchers": [
                    ]
                }
            ],
            "totalAmount": 100,
            "totalCurrency": "AUD",
            "totalPaid": 0,
            "totalDue": 100,
            "dateCreated": "2017-01-19T03:36:18.462Z",
            "dateConfirmed": "2017-01-19T03:36:18.462Z",
            "payments": [
            ],
            "fields": [
                {
                    "label": "Special Requirements",
                    "value": "No meat meal option",
                    "requiredPerParticipant": false,
                    "requiredPerBooking": false,
                    "visiblePerParticipant": false,
                    "visiblePerBooking": false
                }
            ],
            "source": "API",
            "vouchers": [
            ]
        }
    }
    
    path Parameters
    orderNumber
    required
    string

    order number of the booking

    Request Body schema: application/json
    object (User)

    Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company.

    object (Customer)

    The customer is the person making the booking, and most of the time paying for it.
    It differs from Participants, who are the people attending a tour

    Array of objects (BookingField)

    List of custom fields that are required "once per booking" by all the products in this booking

    internalNotes
    string

    Comments only visible internally by the supplier

    Array of objects (BookingItemCreate)

    List of items in this booking. A booking can contain multiple products. Each BookingItem is a separate product with its own set of quantities and participant details.

    orderNumber
    string

    Order number. This is the number you should give to customers and print on booking confirmations. Order number is generated by the system, therefore, even if it is specified in the booking request, it will be overwritten.

    resellerComments
    string

    Comments only visible by the agent and the supplier. This should be used by the agent to send voucher numbers/redemption codes to suppliers.

    resellerId
    integer <int64>

    Rezdy internal ID of the agent company attached to this booking

    resellerReference
    string

    External reseller reference, can be used to pass internal booking number. This reference will be shown to a supplier, also it will appear on reports and can be used to filter orders. Maxiumum number of characters is 30

    object (User)

    Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company.

    status
    string
    Enum: "PROCESSING" "NEW" "ON_HOLD" "PENDING_SUPPLIER" "PENDING_CUSTOMER" "CONFIRMED" "CANCELLED" "ABANDONED_CART"

    Status of this booking

    Responses

    Response Schema:
    object (Booking)

    Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.
    A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier.

    required
    object (RequestStatus)

    Request samples

    Content type
    application/json

    Update internal info

    "TODO"

    Response samples

    Content type
    {
    • "booking": {
      • "barcodeType": "TEXT",
      • "comments": "string",
      • "commission": 0,
      • "coupon": "string",
      • "createdBy": {
        • "code": "string",
        • "email": "string",
        • "firstName": "string",
        • "lastName": "string"
        },
      • "creditCard": {
        • "cardCountry": "string",
        • "cardName": "string",
        • "cardNumber": "string",
        • "cardSecurityNumber": "string",
        • "cardToken": "string",
        • "cardType": "VISA",
        • "expiryMonth": "string",
        • "expiryYear": "string"
        },
      • "customer": {
        • "aboutUs": "string",
        • "addressLine": "string",
        • "addressLine2": "string",
        • "city": "string",
        • "companyName": "string",
        • "countryCode": "string",
        • "dob": "2019-08-24T14:15:22Z",
        • "email": "string",
        • "fax": "string",
        • "firstName": "string",
        • "gender": "MALE",
        • "id": 0,
        • "lastName": "string",
        • "marketing": true,
        • "middleName": "string",
        • "mobile": "string",
        • "name": "string",
        • "newsletter": true,
        • "phone": "string",
        • "postCode": "string",
        • "preferredLanguage": "string",
        • "skype": "string",
        • "state": "string",
        • "title": "MR"
        },
      • "dateConfirmed": "2019-08-24T14:15:22Z",
      • "dateCreated": "2019-08-24T14:15:22Z",
      • "datePaid": "2019-08-24T14:15:22Z",
      • "dateReconciled": "2019-08-24T14:15:22Z",
      • "dateUpdated": "2019-08-24T14:15:22Z",
      • "fields": [
        • {
          • "fieldType": "String",
          • "label": "string",
          • "listOptions": "string",
          • "requiredPerBooking": true,
          • "requiredPerParticipant": true,
          • "value": "string",
          • "visiblePerBooking": true,
          • "visiblePerParticipant": true
          }
        ],
      • "internalNotes": "string",
      • "items": [
        • {
          • "amount": 0,
          • "endTime": "2019-08-24T14:15:22Z",
          • "endTimeLocal": "string",
          • "extras": [
            • {
              • "description": "string",
              • "extraPriceType": "ANY",
              • "id": 0,
              • "image": {
                • "id": 0,
                • "itemUrl": "string",
                • "largeSizeUrl": "string",
                • "mediumSizeUrl": "string",
                • "thumbnailUrl": "string"
                },
              • "name": "string",
              • "price": 0,
              • "quantity": 0
              }
            ],
          • "participants": [
            • {
              • "fields": [
                • {
                  • "fieldType": "String",
                  • "label": "string",
                  • "listOptions": "string",
                  • "requiredPerBooking": true,
                  • "requiredPerParticipant": true,
                  • "value": "string",
                  • "visiblePerBooking": true,
                  • "visiblePerParticipant": true
                  }
                ]
              }
            ],
          • "pickupLocation": {
            • "additionalInstructions": "string",
            • "address": "string",
            • "latitude": 0,
            • "locationName": "string",
            • "longitude": 0,
            • "minutesPrior": 0,
            • "pickupInstructions": "string",
            • "pickupTime": "string"
            },
          • "productCode": "string",
          • "productName": "string",
          • "quantities": [
            • {
              • "optionId": 0,
              • "optionLabel": "string",
              • "optionPrice": 0,
              • "value": 0
              }
            ],
          • "startTime": "2019-08-24T14:15:22Z",
          • "startTimeLocal": "string",
          • "subtotal": 0,
          • "totalItemTax": 0,
          • "totalQuantity": 0,
          • "transferFrom": "string",
          • "transferReturn": true,
          • "transferTo": "string",
          • "vouchers": [
            • {
              • "code": "string",
              • "expiryDate": "2019-08-24T14:15:22Z",
              • "internalNotes": "string",
              • "internalReference": "string",
              • "issueDate": "2019-08-24T14:15:22Z",
              • "sourceOrder": "string",
              • "status": "ISSUED",
              • "value": 0,
              • "valueType": "VALUE_LIMITPRODUCT"
              }
            ]
          }
        ],
      • "orderNumber": "string",
      • "paymentOption": "CREDITCARD",
      • "payments": [
        • {
          • "amount": 0,
          • "currency": "AED",
          • "date": "2019-08-24T14:15:22Z",
          • "label": "string",
          • "recipient": "SUPPLIER",
          • "type": "PAYPAL"
          }
        ],
      • "resellerAlias": "string",
      • "resellerComments": "string",
      • "resellerId": 0,
      • "resellerName": "string",
      • "resellerReference": "string",
      • "resellerSource": "ONLINE",
      • "resellerUser": {
        • "code": "string",
        • "email": "string",
        • "firstName": "string",
        • "lastName": "string"
        },
      • "sendNotifications": true,
      • "source": "ONLINE",
      • "sourceChannel": "string",
      • "sourceReferrer": "string",
      • "status": "PROCESSING",
      • "supplierAlias": "string",
      • "supplierId": 0,
      • "supplierName": "string",
      • "surcharge": 0,
      • "totalAmount": 0,
      • "totalCurrency": "AED",
      • "totalDue": 0,
      • "totalPaid": 0,
      • "vouchers": [
        • "string"
        ]
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Cancel booking

    Cancel an existing booking and send notifications about the cancellation. In case of an Automated Payment booking, will also refund payment.

    path Parameters
    orderNumber
    required
    string
    Example: R123456

    Order number to cancel

    query Parameters
    sendNotifications
    boolean

    Flag to control if a booking confirmation email should be send to the customer after this booking is canceled. Default (if not specified) is true.

    Responses

    Response Schema: application/json
    object (Booking)

    Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.
    A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier.

    required
    object (RequestStatus)

    Response samples

    Content type
    application/json

    Get booking RKM1ULT: https://api.rezdy-staging.com/v1/bookings/RKM1ULT?apiKey=69f708868ddc45eaa1f9b9fad1ddeba5

    {
    • "requestStatus": {
      • "success": true,
      • "warning": {
        • "warningMessage": "This order is already cancelled"
        },
      • "version": "v1"
      },
    • "booking": {
      • "orderNumber": "RKQ0687",
      • "status": "CANCELLED",
      • "supplierId": 13398,
      • "supplierName": "API specification demo supplier (DO NOT EDIT)",
      • "supplierAlias": "apispecificationdemosupplierdonotedit",
      • "resellerId": 13399,
      • "resellerName": "API specification demo agent (DO NOT EDIT)",
      • "resellerAlias": "apispecificationdemoagentdonotedit",
      • "customer": {
        • "id": 29665,
        • "firstName": "Rick",
        • "lastName": "Sanchez",
        • "name": "Rick Sanchez",
        • "phone": "+61484123456"
        },
      • "items": [
        • {
          • "productName": "Double dive with sharks",
          • "productCode": "PWQF1Y",
          • "startTime": "2025-09-30T23:00:00Z",
          • "endTime": "2025-10-01T02:00:00Z",
          • "startTimeLocal": "2025-10-01 09:00:00",
          • "endTimeLocal": "2025-10-01 12:00:00",
          • "quantities": [
            • {
              • "optionLabel": "Adult",
              • "optionPrice": 250,
              • "value": 1
              }
            ],
          • "totalQuantity": 1,
          • "amount": 250,
          • "extras": [ ],
          • "participants": [
            • {
              • "fields": [
                • {
                  • "label": "First Name",
                  • "value": "Rick"
                  },
                • {
                  • "label": "Last Name",
                  • "value": "Sanchez"
                  },
                • {
                  • "label": "Certification level",
                  • "value": "Open Water"
                  },
                • {
                  • "label": "Certification number",
                  • "value": "123456798"
                  },
                • {
                  • "label": "Certification agency",
                  • "value": "PADI"
                  }
                ]
              }
            ],
          • "subtotal": 250,
          • "pickupLocation": {
            • "locationName": "Divers hotel",
            • "address": "Cape Byron, Byron Bay NSW, Australia",
            • "pickupTime": "2025-10-01 08:30:00",
            • "pickupInstructions": "Please be ready 15 minute before the pickup time in the hotel lobby area.\r\nPlease be ready 15 minute before the pickup time."
            }
          }
        ],
      • "totalAmount": 250,
      • "totalCurrency": "AUD",
      • "totalPaid": 250,
      • "totalDue": 0,
      • "dateCreated": "2025-09-07T00:21:22Z",
      • "dateUpdated": "2025-09-09T03:57:02Z",
      • "dateConfirmed": "2025-09-07T00:21:22Z",
      • "datePaid": "2025-09-07T00:21:22Z",
      • "payments": [
        • {
          • "type": "CASH",
          • "amount": 250,
          • "currency": "AUD",
          • "date": "2025-09-07T00:21:22Z",
          • "label": "Paid in cash to API specification demo agent",
          • "recipient": "RESELLER"
          }
        ],
      • "fields": [
        • {
          • "label": "Barcode",
          • "value": "RKQ0687"
          }
        ],
      • "source": "MARKETPLACE_PREF_RATE",
      • "resellerSource": "API",
      • "sourceChannel": "APISPECIFICATIONDEMOAGENTDONOTEDIT",
      • "resellerComments": "Here come agent comments that are visible to both booking agent and supplier",
      • "commission": 25,
      • "vouchers": [ ],
      • "barcodeType": "QR_CODE"
      }
    }

    Resources

    List resources

    Retrieve all supplier resources. Pagination using limit and offset is applied to the result list.

    query Parameters
    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    Array of objects (Resource)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "resources": [
      • {
        • "id": 0,
        • "name": "string",
        • "seats": 0,
        • "type": "RESOURCE"
        }
      ]
    }

    Get session resources

    Retrieve resources assigned to the session. Session has to be specified either by sessionId or by product code and start time (or start time local).

    query Parameters
    sessionId
    integer <int64>

    Session ID

    productCode
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00

    limit
    integer <int32>

    How many results are returned per request. Maximum is 100, which also a default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    Array of objects (Resource)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "resources": [
      • {
        • "id": 0,
        • "name": "string",
        • "seats": 0,
        • "type": "RESOURCE"
        }
      ]
    }

    Add session resource

    Add the resource to the session.

    path Parameters
    resourceId
    required
    integer <int64>

    Resource ID

    sessionId
    required
    integer <int64>

    Session ID

    query Parameters
    resourceOrder
    integer <int32>

    Order of the resource in the session. Optional, if not specified, will by calculated by the system to fill the first gap if gap is found, or the highest number among existing resources.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    object (Resource)

    Supplier resource - e.g. raft, bus, tour guide, venue which has a limited capacity. The resources can be shared between different supplier's products. If the resource does not have any spare availability, the booking of any of the product sessions, where the resource is used will not be possible.

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "resource": {
      • "id": 0,
      • "name": "string",
      • "seats": 0,
      • "type": "RESOURCE"
      }
    }

    Remove session resource

    Removes the resource from the session.

    path Parameters
    resourceId
    required
    integer <int64>

    Resource ID

    sessionId
    required
    integer <int64>

    Session ID

    Responses

    Response Schema:
    required
    object (RequestStatus)
    object (Resource)

    Supplier resource - e.g. raft, bus, tour guide, venue which has a limited capacity. The resources can be shared between different supplier's products. If the resource does not have any spare availability, the booking of any of the product sessions, where the resource is used will not be possible.

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "resource": {
      • "id": 0,
      • "name": "string",
      • "seats": 0,
      • "type": "RESOURCE"
      }
    }

    Get resource sessions

    Retrieves all sessions for the specified resource within the start/end datetime range. Pagination using limit and offset is applied to the result list.

    path Parameters
    resourceId
    required
    integer <int64>

    Resource ID

    query Parameters
    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z

    endTime
    string

    Session end time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00

    endTimeLocal
    string

    Session end time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00

    limit
    integer <int32>

    limit how many results are returned per request. Maximum is 100, which is also the default, when not specified.

    offset
    integer <int32>
    Default: 0

    Offset of the first result to return. Default to 0.

    Responses

    Response Schema:
    required
    object (RequestStatus)
    Array of objects (Session)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      },
    • "sessions": [
      • {
        • "allDay": true,
        • "endTime": "2019-08-24T14:15:22Z",
        • "endTimeLocal": "string",
        • "id": 0,
        • "priceOptions": [
          • {
            • "id": 0,
            • "label": "string",
            • "maxQuantity": 0,
            • "minQuantity": 0,
            • "price": 0,
            • "priceGroupType": "EACH",
            • "productCode": "string",
            • "seatsUsed": 0
            }
          ],
        • "productCode": "string",
        • "seats": 0,
        • "seatsAvailable": 0,
        • "startTime": "2019-08-24T14:15:22Z",
        • "startTimeLocal": "string"
        }
      ]
    }

    Manifest

    Get order item check-in status

    Retrieves the Check-in status. Checks if everyone in the whole session was checked in. The session is identified by product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    orderNumber
    string

    Order number : optional, is specified, only the status of the order item session from the specified order will be retrieved.

    productCode
    required
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    Responses

    Response Schema:
    object (CheckIn)

    Check-in information.

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "checkin": {
      • "isCheckedIn": true
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Check-in order item

    Place Check-in a / No show flag for the specified order item. The order item is identified by order number, product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    orderNumber
    string

    Order number

    productCode
    required
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    checkin
    boolean

    Specifies a Check-in (true) or No show (false) flag to use

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Remove order item check-in

    Retrieves the Check-in status. Checks if everyone in the whole session was checked in. The session is identified by product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    orderNumber
    required
    string

    Order number

    productCode
    required
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    checkin
    boolean

    Specifies a Check-in (true) or No show (false) flag to use

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Get session check-in status

    Retrieves the Check-in status. Checks if everyone in the whole session was checked in. The session is identified by product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    productCode
    required
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    Responses

    Response Schema:
    object (CheckIn)

    Check-in information.

    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "checkin": {
      • "isCheckedIn": true
      },
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Check-in session

    Store Check-in / No show flag for everyone in a specified session. The session is identified by product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    productCode
    required
    string

    productCode Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    checkin
    boolean

    Specifies a Check-in (true) or No show (false) flag to use

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }

    Remove session check-in

    Remove Check-in / No show flag from everyone in the whole session. The session is identified by product code and start time (or start time local).
    Only available for the supplier API.

    query Parameters
    productCode
    required
    string

    Product code in format P12345.

    startTime
    string

    Session start time in ISO 8601 format, e.g. 2014-03-01T00:00:00Z. It is required to have either startTime or startTimeLocal defined.

    startTimeLocal
    string

    Session start time in supplier's local timezone, format is yyyy-MM-dd HH:mm:ss, e.g. 2014-03-01 00:00:00. It is required to have either startTime or startTimeLocal defined.

    Responses

    Response Schema:
    required
    object (RequestStatus)

    Response samples

    Content type
    {
    • "requestStatus": {
      • "error": {
        • "errorCode": "string",
        • "errorMessage": "string"
        },
      • "success": true,
      • "version": "string",
      • "warning": {
        • "warningMessage": "string"
        }
      }
    }