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.