Skip to main content
POST
/
v1
/
public
/
catalog
/
book
Commit a quote to a booking (storefront)
curl --request POST \
  --url https://{operatorDomain}/v1/public/catalog/book \
  --header 'Content-Type: application/json' \
  --data '
{
  "quoteId": "<string>",
  "draftId": "<string>",
  "bookingId": "<string>",
  "party": {},
  "paymentIntent": {
    "tokenizedCard": "<string>",
    "agencyAccount": "<string>"
  },
  "parameters": {},
  "idempotencyKey": "<string>"
}
'
{
  "bookingId": "<string>",
  "orderRef": "<string>",
  "snapshotId": "<string>",
  "pricing": {
    "currency": "<string>",
    "lines": [
      {}
    ],
    "taxes": [
      {}
    ],
    "subtotal": 123,
    "taxTotal": 123,
    "total": 123
  }
}

Body

application/json
quoteId
string
draftId
string
bookingId
string
party
object
paymentIntent
object

One of {type:'hold'} | {type:'card', tokenizedCard} | {type:'ticket_on_credit', agencyAccount}

parameters
object
idempotencyKey
string
Required string length: 8 - 128

Response

200 - application/json

Booking result

bookingId
string
orderRef
string
status
enum<string>
Available options:
held,
confirmed,
ticketed,
failed
snapshotId
string
pricing
object