GET api/ArticleImages/Get?encryptedId={encryptedId}&tenant={tenant}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
encryptedId

string

Required

tenant

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ArticlePicture
NameDescriptionTypeAdditional information
Filepath

string

None.

Width

integer

None.

Height

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Filepath": "sample string 1",
    "Width": 1,
    "Height": 1
  },
  {
    "Filepath": "sample string 1",
    "Width": 1,
    "Height": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfArticlePicture xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SearchEngine.Services.DetailAd.Models">
  <ArticlePicture>
    <Filepath>sample string 1</Filepath>
    <Height>1</Height>
    <Width>1</Width>
  </ArticlePicture>
  <ArticlePicture>
    <Filepath>sample string 1</Filepath>
    <Height>1</Height>
    <Width>1</Width>
  </ArticlePicture>
</ArrayOfArticlePicture>