OrdersGet Checkout DetailsReturns a product set's products (grouped by type) with inventory, plus every order and ticket for that set.GET/v1/orders/checkout/{id}/detailsSendHeadersPathAuthorizationAuthorizationRequiredBearer <token>API key as Bearer tokenIn: headerPath ParametersidRequiredstringProduct set IDGET/v1/orders/checkout/{id}/detailscURLGoNode.jsPythonPHPRubyJavaC#curl -X GET "https://api.3common.com/v1/orders/checkout/string/details" \ -H "Authorization: Bearer <token>"Default Response200401403404Response{ "data": { "products": { "mode": "product-set", "data": [ { "property1": null, "property2": null } ], "inventoryByProductId": { "property1": { "property1": null, "property2": null }, "property2": { "property1": null, "property2": null } } }, "tickets": [ { "property1": null, "property2": null } ], "orders": [ { "property1": null, "property2": null } ] } }TypeScriptexport interface Response { data: { products: { mode: "product-set"; /** * One entry per set: { productSetId, productsByType } */ data: { [k: string]: unknown; }[]; inventoryByProductId: { [k: string]: { [k: string]: unknown; }; }; }; /** * All tickets for the product set */ tickets: { [k: string]: unknown; }[]; /** * All orders for the product set */ orders: { [k: string]: unknown; }[]; }; } Get Kickback TotalReturns the sum of kickback across the host's active, not-on-hold orders, in cents.Get Event Ticket CountsReturns check-in view counts (all / checked-in / awaiting) for an event, optionally scoped to a timeslot.