POST Gallery

Post a collection of images to authenticated user gallery

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Url": "sample string 1",
    "ThumbUrl": "sample string 2",
    "Name": "sample string 3",
    "Type": "sample string 4",
    "Size": 5
  },
  {
    "$ref": "1"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Softlifecell.BusinessAdsForFreeApi.Models">
  <Image>
    <Name>sample string 3</Name>
    <Size>5</Size>
    <ThumbUrl>sample string 2</ThumbUrl>
    <Type>sample string 4</Type>
    <Url>sample string 1</Url>
  </Image>
  <Image>
    <Name>sample string 3</Name>
    <Size>5</Size>
    <ThumbUrl>sample string 2</ThumbUrl>
    <Type>sample string 4</Type>
    <Url>sample string 1</Url>
  </Image>
  <Image>
    <Name>sample string 3</Name>
    <Size>5</Size>
    <ThumbUrl>sample string 2</ThumbUrl>
    <Type>sample string 4</Type>
    <Url>sample string 1</Url>
  </Image>
</ArrayOfImage>