GET v1/Article/Creator/Count

Get a list of all creators currently assigned to articles

Roles Allowed

admin, editor

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

HTTP 200 with all creators and how many articles each creator is assigned to

Collection of ArticleCreatorCount
NameDescriptionTypeAdditional information
Count

The number of articles this creator is assigned to

integer

None.

Creator

The name of the Creator

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Count": 1,
    "Creator": "sample string 2"
  },
  {
    "Count": 1,
    "Creator": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfArticleCreatorCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto">
  <ArticleCreatorCount>
    <Creator>sample string 2</Creator>
    <Count>1</Count>
  </ArticleCreatorCount>
  <ArticleCreatorCount>
    <Creator>sample string 2</Creator>
    <Count>1</Count>
  </ArticleCreatorCount>
</ArrayOfArticleCreatorCount>