POST api/Service/GetItemImage
Request Information
URI Parameters
None.
Body Parameters
ItemImageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Input | ItemImageInputModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Input": {
"ItemID": "sample string 1",
"UserNo": 2
}
}
application/xml, text/xml
Sample:
<ItemImageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<Input>
<ItemID>sample string 1</ItemID>
<UserNo>2</UserNo>
</Input>
</ItemImageRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ItemImageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| OutPut | ItemImageOutPutModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"OutPut": {
"Success": true,
"Message": "sample string 2",
"ItemID": "sample string 3",
"ItemImage": "sample string 4"
}
}
application/xml, text/xml
Sample:
<ItemImageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<OutPut>
<ItemID>sample string 3</ItemID>
<ItemImage>sample string 4</ItemImage>
<Message>sample string 2</Message>
<Success>true</Success>
</OutPut>
</ItemImageResponse>