Required Booking Fields
Each Required Field Step has its own dedicated endpoint that can be used for both retrieving and patching data.
The sequence for making calls to a Required Field endpoint is provided in the response of the Required Field API or in the PATCH response of the current Required Field Step.
Workflow for Required Field Steps
The process of completing a Required Field Step consists of two key actions:
Retrieve Available Options (POST
)
- This step allows you to fetch the list of possible choices for the specific Required Field Step.
- The retrieved options represent what can be selected at this stage.
Select an Option (PATCH
)
- After reviewing the available options, you can select one that fits the requirement for the step.
- Once an option is selected, the process may provide details about the next step in the sequence, guiding you through the workflow.
Important Notes:
- PATCH Requests: A PATCH request must always be preceded by a POST request for the corresponding "Required Field Step."
- Required Field Sequence: Follow the exact sequence of "Required Field Steps" as specified in the API response. This ensures data consistency. Deviating from the sequence may result in validation errors.
- Multiple Selections: The fields TICKETS and EXTRAS support multiple selections in a PATCH request. All other fields support only a single selection in a PATCH request.
- Re-Patching of Fields: If a previously patched "Required Field" is updated or retrieved again, all subsequent required fields must also be re-patched.
By adhering to this two-step process and sequence validation, you can ensure a smooth and reliable integration with the Required Field API.
Options
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
options | options (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Dates
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
dates | dates (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Sample Response | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Tickets
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
restrictions | restrictions (JsonArray) |
List of restrictions on the ticket |
key (String) |
Restriction Type | |
value (String) |
Restriction Value | |
tickets | tickets (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
description (String) |
Description of the item | |
type (String) |
Type of the Ticket | |
availableQuantity (IntegerArray) |
Provided Total Amount of Tickets available | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item | |
quantity* (Integer) |
Quantity of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item | |
description (String) |
Description of the Selected Item | |
price (Double) |
Price of the Selected Item as per quantity | |
currency (String) |
Currency of the Selected Item's Price | |
quantity (Integer) |
Quantity of the selected Item |
Timeslots
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
timeslots | timeslots (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Pickup
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
pickup | pickup (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Language
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
language | language (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Extras
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
restrictions | restrictions (JsonArray) |
List of restrictions on the ticket |
key (String) |
Restriction Type | |
value (String) |
Restriction Value | |
extras | extras (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Seat Map
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
seatMap | seatMap (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
Shipment Method
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
shipmentMethod | shipmentMethod (JsonArray) |
List of Required Field Options |
key (Integer) |
Key for item, to be used for selection | |
value (String) |
Value of the item | |
name (String) |
Name for the item (Will be returned if Available) | |
description (String) |
Description about the item (Will be returned if Available) | |
startingPrice (Double) |
Initial Price for the item ( Will be returned if Available) | |
currency (String) |
Currency for Returned Price ( Will be returned if Available) |
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
selectedData | selectedData* (JsonArray) |
List of selected item |
key* (Integer) |
Key of the Selected Item |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedData | selectedData (JsonArray) |
List of selected item |
key (Integer) |
Key of the Selected Item | |
value (String) |
Value of the Selected Item |
CustomerInfo
Retrieve Data
Request Method |
---|
POST |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
Sample Request | |
---|---|
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) | |
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
customerInfo | customerInfo (JsonArray) |
List of Required Field Options |
groupKey (Integer) |
Key for the group, to be used for selection | |
groupName (String) |
Name of the group | |
groupFields | groupFields (JsonArray) |
List of Field in the group |
key (Integer) |
Key of the Field Item, to be used in Patch Request | |
fieldName (String) |
Name of the group field | |
type (String) |
Input Type of the group filed | |
minimumLength (Integer) |
Minimum Length for the Input | |
maximumLength (Integer) |
Maximum Length for the Input | |
options | options (JsonArray) |
List of options for the field |
optionKey (String) |
Key for the Option, to be usec as value in Patch | |
optionName (String) |
Display name for the option |
Sample Response | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
|
Patch Data
Request Method |
---|
PATCH |
Tags | Attribute | Description |
---|---|---|
searchKey | searchKey* (String) |
This attribute serves as a unique search identifier that enables the identification of a specific user flow request. |
offerId | offerId* (String) |
A unique offer id used for all subsequent API calls to identify user selected result. |
workflowId | workflowId* (String) |
A Unique workflow id for Required field flow |
customerInfo | customerInfo* (JsonArray) |
List of selected item |
groupKey* (Integer) |
Key of the Group | |
groupFields | groupFields* (JsonArray) |
Key of the Group |
key* (Integer) |
Key of the Field of that Group | |
value* (String) |
Value for the Group Field |
Tags | Attribute | Description |
---|---|---|
meta | meta (Object) |
|
success (String) |
Response status will be return Ex: "true" | |
statusCode (Boolean) |
Response statusCode will be return Ex: "1" | |
statusMessage (String) |
Response statusMessage will be return Ex: "SUCCESS" | |
actionType (String) |
This attribute will indicate that client request type such as Hotel search , Prov book and Book etc... . This is for information purpose. | |
conversationId (String) |
conversationId a unique identifier of current conversation . | |
commonData | commonData (JsonObject) |
|
searchKey (String) |
This attribute contains a unique search key. | |
data | data (JsonArray) |
This encloses Required Field information. |
offerId (String) |
A unique offer id used for all subsequent API calls to identify user selected result. | |
workflowId (String) |
A Unique workflow id for Required field flow | |
step (String) |
Name of Current Step | |
nextStep (String) |
Name of Next Step ( Will be returned if isFinalStep is false ) | |
isFinalStep (Boolean) |
true if current step is last step else false | |
netAmount (Double) |
Total Amount after Patching current required field | |
currency (String) |
Currency of the returned netAmount | |
selectedCustomerInfo | selectedCustomerInfo (JsonArray) |
List of Selected Customer Info |
groupName (String) |
Name of the Group | |
groupFields | groupFields (JsonArray) |
List of Field item in the group |
field (String) |
Name of the field item | |
value (String) |
Value of field item ( Same as provided in request) |