GET api/commentaryEditor/commentary/authors/{language}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
language

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Author
NameDescriptionTypeAdditional information
Id

integer

None.

EnglishName

string

None.

FirstName

string

None.

LastName

string

None.

LanguageId

integer

None.

ParentId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "englishName": "sample string 2",
    "firstName": "sample string 3",
    "lastName": "sample string 4",
    "languageId": 5,
    "parentId": 6
  },
  {
    "id": 1,
    "englishName": "sample string 2",
    "firstName": "sample string 3",
    "lastName": "sample string 4",
    "languageId": 5,
    "parentId": 6
  }
]

text/html

Sample:
[{"id":1,"englishName":"sample string 2","firstName":"sample string 3","lastName":"sample string 4","languageId":5,"parentId":6},{"id":1,"englishName":"sample string 2","firstName":"sample string 3","lastName":"sample string 4","languageId":5,"parentId":6}]

application/xml, text/xml

Sample:
<ArrayOfAuthor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ABOM.ArabicBible.DomainModels.Commentary">
  <Author>
    <EnglishName>sample string 2</EnglishName>
    <FirstName>sample string 3</FirstName>
    <Id>1</Id>
    <LanguageId>5</LanguageId>
    <LastName>sample string 4</LastName>
    <ParentId>6</ParentId>
  </Author>
  <Author>
    <EnglishName>sample string 2</EnglishName>
    <FirstName>sample string 3</FirstName>
    <Id>1</Id>
    <LanguageId>5</LanguageId>
    <LastName>sample string 4</LastName>
    <ParentId>6</ParentId>
  </Author>
</ArrayOfAuthor>