PUT api/Kiosk/UpdateKioskImage
Update Kiosk Image JPG image as a base64 string Only accessible by Administrative Users
Request Information
URI Parameters
None.
Body Parameters
Populate ImageId, Description, and Base64String properties when updating a Kiosk Image
KioskImage| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageId | integer |
None. |
|
| Description | string |
None. |
|
| FileData | Collection of byte |
None. |
|
| Base64String | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ImageId": 1,
"Description": "sample string 2",
"FileData": "QEA=",
"Base64String": "sample string 3"
}
application/xml, text/xml
Sample:
<KioskImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RSMCP.Entities"> <Base64String>sample string 3</Base64String> <Description>sample string 2</Description> <FileData>QEA=</FileData> <Image xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Drawing" i:nil="true" /> <ImageId>1</ImageId> </KioskImage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |