Foundry Worker Order Chip
'/foundry-workers/{id}/order-chips'
GET
async find(
@param.path.string('id') id: string,
@param.query.object('filter') filter?: Filter<OrderChip>,
): Promise<OrderChip[]>'/foundry-workers/{id}/order-chips/{chipOrderId}'
PATCH
async updateById(
@param.path.string('id') id: string,
@param.path.string('chipOrderId') chipOrderId: string,
@requestBody({
content: {
'application/json': {
schema: getModelSchemaRef(OrderChip, {partial: true}),
},
},
})
orderChip: OrderChip,
): Promise<void>'/foundry-workers/{id}/downloadFile'
GET
Last updated