Order Info Order Chip
'/orders/{id}/order-chips'
GET
async find(
@param.path.number('id') id: number,
): Promise<OrderChip[]>POST
async create(
@param.path.number('id') id: typeof OrderInfo.prototype.id,
@requestBody({
content: {
'application/json': {
schema: {
type: 'object',
}
},
},
})
chip: Product & CheckoutLineItemInput,
): Promise<OrderChip>'/orders/{id}/order-chips/{orderChipId}'
PATCH
DEL
Last updated