GET api/ArticleList

Returns a List of Articles which are not deleted and have a valid article number

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ArticleListItem
NameDescriptionTypeAdditional information
ArticleNumber

The article number

string

None.

Label

The label of the article

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ArticleNumber": "sample string 1",
    "Label": "sample string 2"
  },
  {
    "ArticleNumber": "sample string 1",
    "Label": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfArticleListItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ArticleListItem>
    <ArticleNumber>sample string 1</ArticleNumber>
    <Label>sample string 2</Label>
  </ArticleListItem>
  <ArticleListItem>
    <ArticleNumber>sample string 1</ArticleNumber>
    <Label>sample string 2</Label>
  </ArticleListItem>
</ArrayOfArticleListItem>