👪Group Booking [BETA]
Do a Group Booking with Authenticated Checkout
Terminology
Request
{
"@context": ["https://openactive.io/", "https://imin.co/"],
"type": "imin:CheckoutSession",
"imin:initialOrder": {
"type": "OrderQuote",
"customer": "<< Customer ID >>",
"broker": {
"type": "Organization",
"name": "<< Broker name >>",
"url": "<< Broker home page URL >>"
},
"orderedItem": [
{
"type": "OrderItem",
"orderedItem": {
"type": "<< Opportunity Type >>",
"identifier": "<< Opportunity Identifier >>"
},
"acceptedOffer": "<< Offer ID >>",
"attendee": "<< Attendee #1 ID >>"
},
{
"type": "OrderItem",
"orderedItem": {
"type": "<< Opportunity Type >>",
"identifier": "<< Opportunity Identifier >>"
},
"acceptedOffer": "<< Offer ID >>",
"attendee": "<< Attendee #2 ID >>"
}
]
},
"imin:navigationLinks": [
{
"type": "WebPage",
"name": "Back to Broker",
"imin:linkType": "https://imin.co/BackToBrokerLink",
"url": "<< back to broker URL >>"
},
{
"type": "WebPage",
"name": "Back to Broker User Profile",
"imin:linkType": "https://imin.co/BackToBrokerUserProfileLink",
"url": "<< back to broker user profile URL >>"
}
]
}Last updated