GET api/SocialDriver/Service/{serviceId}/ExtendedServiceImage
Get all the extended images for a service
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceId |
The id of the service to query |
unsigned integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A collection of ExtendedServiceImageResponses
Collection of ExtendedServiceImageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The image id |
integer |
None. |
| Index |
The image index |
integer |
None. |
| ImageURL |
The image url |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Index": 2,
"ImageURL": "sample string 3"
},
{
"Id": 1,
"Index": 2,
"ImageURL": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfExtendedServiceImageResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtendedServiceImageResponse>
<Id>1</Id>
<Index>2</Index>
<ImageURL>sample string 3</ImageURL>
</ExtendedServiceImageResponse>
<ExtendedServiceImageResponse>
<Id>1</Id>
<Index>2</Index>
<ImageURL>sample string 3</ImageURL>
</ExtendedServiceImageResponse>
</ArrayOfExtendedServiceImageResponse>