Customer File Info
'/customers/{id}/files'
GET
async find(
@param.path.string('id') id: typeof Customer.prototype.userId,
@param.query.object('filter') filter?: Filter<FileInfo>,
): Promise<FileInfo[]>POST
async fileUpload(
@param.path.string('id') id: typeof Customer.prototype.userId,
@requestBody.file() request: Request,
@inject(RestBindings.Http.RESPONSE) response: Response,
): Promise<FileInfo>'/guest/files'
POST
'/customers/{id}/guestTransfer/{fileId}'
PATCH
'/customers/{id}/files/{fileId}'
GET
DEL
'/guest/files/{fileId}'
GET
'/customers/{id}/files/{fileId}/download'
GET
'/guest/files/{fileId}/download'
GET
Last updated