GET api/Users/GetAuthenticatedUserImage
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
UserImage| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | string |
None. |
|
| Title | string |
None. |
|
| Image | Collection of byte |
None. |
|
| ContentType | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserID": "sample string 1",
"Title": "sample string 2",
"Image": "QEA=",
"ContentType": "sample string 3"
}
application/xml, text/xml
Sample:
<UserImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIClassLibrary.DataAccess"> <ContentType>sample string 3</ContentType> <Image>QEA=</Image> <Title>sample string 2</Title> <UserID>sample string 1</UserID> </UserImage>