Recheck API Endpoint

Returns all available timings, languages, and rate details for a specific activity on the requested date.


Overview

Method: POST
URL: /api/activity/recheck
Api-Key: Required (API Key Header)
Content-Type: application/json Accept: application/json


Request

Request Parameters

Field Type Required Description
occupancy* object (Occupancy Object) True Defines the number of travelers by type. Must include at least one adult.
activity_code* string True Unique activity identifier.
date* string (YYYY-MM-DD) True Date of the activity.
search_id* string True Unique search reference obtained from the Search API.
group_code* string True Identifier that groups related activities.

Note: Fields marked with <sup>*</sup> are mandatory.


Occupancy Object Structure

Field Type Required Description
infants integer False Number of infants participating.
adults* integer True Number of adults participating. Must be at least one.
children integer False Number of children participating.
seniors integer False Number of senior travelers participating.
youth integer False Number of youth travelers participating.

Validation Rule:
At least one adult (adults >= 1) is required in every request.


Example Request

{
  "occupancy": {
    "infants": 0,
    "adults": 1,
    "children": 0,
    "seniors": 0,
    "youth": 0
  },
  "activity_code": "50946P1",
  "date": "2025-12-28",
  "search_id": "e522cifnrfeuuze5k7itymtzqa",
  "group_code": "u6lql4djuarcpwkxusoq"
}