PATCH api/SocialDriver/ExtendedServiceImage/{imageId}
Update an extended image
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
imageId |
The id of the image to update |
integer |
Required |
Body Parameters
The PatchExtendedServiceImageRequest, null values will not be changed
PatchExtendedServiceImageRequestName | Description | Type | Additional information |
---|---|---|---|
Index |
The image index |
integer |
None. |
ImageData |
The service image encoded as a Base64 string |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Index": 1, "ImageData": "sample string 1" }
application/xml, text/xml
Sample:
<PatchExtendedServiceImageRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Index>1</Index> <ImageData>sample string 1</ImageData> </PatchExtendedServiceImageRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A 200 on success
HttpResponseMessageName | 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. |