CreateCheckoutRequest
checkout object[]required
The email of the customer to send the receipt to. Only applicable if collect_customer_on_stripe is false
The name of the customer to send the receipt to. Only applicable if collect_customer_on_stripe is false
Whether to collect customer information on stripe during checkout
falseThe coupon code to apply to the checkout
The url to redirect to after a successful checkout
The url to redirect to after a cancelled checkout
The amount to charge as an application fee in cents
The stripe account id to use for this checkout
line_items object[]required
The ksuid of the item/bundle associated with this line item
The type of the line item, either 'item' or 'bundle'
The name of the product associated with this line item
The list of items included in this line item if it's a bundle
The ksuid of the event associated with this item
The price id of the product in stripe
The quantity of this item to add to the checkout
1{
"checkout": [
{
"email": "string",
"name": "string",
"collect_customer_on_stripe": false,
"coupon_code": "string",
"success_url": "string",
"cancel_url": "string",
"application_fee_amount": 0,
"stripe_account_id": "string",
"line_items": [
{
"ksuid": "string",
"entity_type": "string",
"name": "string",
"includes": [
"string"
],
"event_ksuid": "string",
"price_id": "string",
"quantity": 1
}
]
}
]
}