GET api/facebook/{accountGuid}?count={count}&height={height}&width={width}

Returns the TOP x facebook pictures for account

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountGuid

GUID of Account

globally unique identifier

Required

count

Desired amount of returned pictures

integer

Default value is 10

height

Max-Height of pictures

integer

None.

width

Max-Width of pictures

integer

None.

Body Parameters

None.

Response Information

Resource Description

Facebook object with Images

Facebook
NameDescriptionTypeAdditional information
Images

Collection of Image

None.

Response Formats

application/json, text/json

Sample:
{
  "Images": [
    {
      "Path": "sample string 1",
      "Link": "sample string 2",
      "Title": "sample string 3"
    },
    {
      "Path": "sample string 1",
      "Link": "sample string 2",
      "Title": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<Facebook xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.Services.ViewModels.Shared.Models">
  <Images>
    <Image>
      <Link>sample string 2</Link>
      <Path>sample string 1</Path>
      <Title>sample string 3</Title>
    </Image>
    <Image>
      <Link>sample string 2</Link>
      <Path>sample string 1</Path>
      <Title>sample string 3</Title>
    </Image>
  </Images>
</Facebook>