Skip to content

From a json order description, build the cart items list​

POST
/api/v2/cart/build-cart-items

Creates a line item for each ticket, question, insurance and fee (depending on settings)

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"includeFees": 0,
  
"basicInfo": "string",
  
"tickets": [
  
],
  
"promoCodes": [
  
],
  
"orderAnswers": [
  
],
  
"shippingOptions": [
  
],
  
"insuranceInfo": "string"
}

Responses​

Playground​

Authorization
Body

Samples​


GET /api/v2/cart/build-cart-items-from-order-id​

GET
/api/v2/cart/build-cart-items-from-order-id

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

orderId

Id of the order

Type
integer
Format
"int64"

Responses​

Playground​

Authorization
Variables
Key
Value

Samples​


Process the cart data to describe what order would be created with it​

POST
/api/v2/cart

Process the cart data to describe what order would be created with it

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"paymentMethod": "string",
  
"basicInfo": "string",
  
"tickets": [
  
],
  
"promoCodes": [
  
],
  
"orderAnswers": [
  
],
  
"shippingOptions": [
  
],
  
"insuranceInfo": "string"
}

Responses​

Playground​

Authorization
Body

Samples​


Powered by VitePress OpenAPI