Customer Order Info
'/customers/{id}/order-chips'
GET
async find(
@param.path.string('id') id: typeof Customer.prototype.id,
): Promise<OrderChip[]>'/customers/{id}/orders'
GET
async getCustomerOrders(
@param.path.string('id') id: typeof Customer.prototype.id,
@param.filter(OrderInfo) filter?: Filter<OrderInfo>,
): Promise<OrderInfo[]>'/customers/{id}/cart'
GET
'/customers/{id}/orders/{orderId}/checkout'
POST
Last updated