GET api.ashx/v2/users/{userid}/coverphoto.{json|xml}
Get a user's cover photo
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
userid | int | Path | User ID. | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/users/{userid}/coverphoto.json', data: { 'userid': '6' } }).then(function(response) { // use response });
Example Responses
JSON
{ "UserCoverPhoto": { "Url": "url", "Warnings": [], "Errors": [] }, "Errors": [ "string", "string" ] }
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <UserCoverPhoto> <Url>url</Url> </UserCoverPhoto> <Errors> <Message>string</Message> <Message>string</Message> </Errors> </Response>