Created
July 31, 2020 20:13
-
-
Save ingoclaro/38e2fe8544596fde5d555a1db0a8ba1b to your computer and use it in GitHub Desktop.
3pip payload examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"purchaserQuestions": [{ | |
"locale": "en_US", | |
"questions": [ | |
{ | |
"id": "firstName", | |
"property": "firstName", | |
"type": "TEXT", | |
"label": "First Name", | |
"value": "John", | |
"required": true, | |
"maxLength": 255 | |
}, | |
{ | |
"id": "lastName", | |
"property": "lastName", | |
"type": "TEXT", | |
"label": "Last Name", | |
"required": true, | |
"maxLength": 255 | |
}, | |
{ | |
"id": "days", | |
"property": "days", | |
"type": "NUMBER", | |
"label": "Number of Days" | |
}, | |
{ | |
"id": "hasVisited", | |
"property": "hasVisited", | |
"type": "BOOLEAN", | |
"label": "Have you visited us before?" | |
} | |
] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"availabilityAttributes": [{ | |
"id": "party-size", | |
"selectionType": "multiple", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Party Size" | |
}], | |
"values": [{ | |
"id": "adult", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Adult" | |
}] | |
}, { | |
"id": "student", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Student" | |
}] | |
}, | |
{ | |
"id": "child", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Child (0-10)" | |
}] | |
} | |
] | |
}, | |
{ | |
"id": "tour-type", | |
"selectionType": "single", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Tour Type" | |
}], | |
"values": [{ | |
"id": "entrance", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Entrance" | |
}] | |
}, | |
{ | |
"id": "entrance-audio", | |
"writeups": [{ | |
"locale": "en-US", | |
"title": "Entrance + Audio Guide" | |
}] | |
} | |
] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"availableSegments": [{ | |
"id": "adult-55532", | |
"availableAt": "2020-04-24T20:00:00Z", | |
"availableUntil": "2020-04-24T22:00:00Z", | |
"estimatedRemainingQuantity": 23, | |
"pricing": { | |
"currencyCode": "USD", | |
"originalPrice": { | |
"minorUnitAmount": 15000 | |
}, | |
"discountedPrice": { | |
"minorUnitAmount": 12000 | |
} | |
} | |
"attributeIds": [ | |
"adult", | |
"entrance" | |
] | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment