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