POST api/AiStore/UploadImagesPathAI
Request Information
URI Parameters
None.
Body Parameters
ImageUploadDtoName | Description | Type | Additional information |
---|---|---|---|
categoryId | integer |
None. |
|
shelfName | string |
None. |
|
meetingId | string |
None. |
|
customerId | integer |
None. |
|
customerRackId | integer |
None. |
|
Images | Collection of ImageDto |
None. |
|
stichedImage | string |
None. |
|
loginuserId | integer |
None. |
|
businessId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "categoryId": 1, "shelfName": "sample string 2", "meetingId": "sample string 3", "customerId": 4, "customerRackId": 5, "Images": [ { "image": "sample string 1" }, { "image": "sample string 1" } ], "stichedImage": "sample string 6", "loginuserId": 7, "businessId": 8 }
application/xml, text/xml
Sample:
<ImageUploadDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model"> <businessId>8</businessId> <loginuserId>7</loginuserId> <stichedImage>sample string 6</stichedImage> <Images> <ImageDto> <image>sample string 1</image> </ImageDto> <ImageDto> <image>sample string 1</image> </ImageDto> </Images> <categoryId>1</categoryId> <customerId>4</customerId> <customerRackId>5</customerRackId> <meetingId>sample string 3</meetingId> <shelfName>sample string 2</shelfName> </ImageUploadDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VCAPIResponseName | Description | Type | Additional information |
---|---|---|---|
Version | string |
None. |
|
dateTime | string |
None. |
|
StatusCode | integer |
None. |
|
ErrorMessage | string |
None. |
|
Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Version": "1.0.0", "dateTime": "2025/04/04 03:55:21", "StatusCode": 1, "ErrorMessage": "sample string 2", "Result": {} }
application/xml, text/xml
Sample:
<VCAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model"> <ErrorMessage>sample string 2</ErrorMessage> <Result /> <StatusCode>1</StatusCode> </VCAPIResponse>