GET api/SocialDriver/ExtendedServiceImage/{imageId}

Get an extended image

Request Information

URI Parameters

NameDescriptionTypeAdditional information
imageId

The image id to query

integer

Required

Body Parameters

None.

Response Information

Resource Description

ExtendedServiceImageResponse
NameDescriptionTypeAdditional 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"
}

application/xml, text/xml

Sample:
<ExtendedServiceImageResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <Index>2</Index>
  <ImageURL>sample string 3</ImageURL>
</ExtendedServiceImageResponse>