Customer
'/customers'
POST
async create(
@param.query.string('fileTransfer', {required: false}) fileTransfer: string,
@requestBody({
content: {
'application/json': {
schema: {
type: 'object',
},
},
},
})
customer: DTO<Customer & User & Address>,
): Promise<Customer>GET
'/customers/{id}'
GET
DEL
PATCH
Last updated