GET v1/Article/Contributor/Count

Get a list of all contributors currently assigned to articles

Roles Allowed

admin, editor

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

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

Collection of ArticleContributorCount
NameDescriptionTypeAdditional information
Count

The number of articles this contributor is assigned to

integer

None.

Contributor

Name of the Contributor

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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