GET api/islamic/koran/search/{languageSymbol}/{searchTerm}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
languageSymbol

string

Required

searchTerm

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VerseUi
NameDescriptionTypeAdditional information
Id

string

None.

Number

integer

None.

ChapterNumber

integer

None.

Content

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "Number": 2,
    "ChapterNumber": 3,
    "Content": "sample string 4"
  },
  {
    "Id": "sample string 1",
    "Number": 2,
    "ChapterNumber": 3,
    "Content": "sample string 4"
  }
]

text/html

Sample:
[{"Id":"sample string 1","Number":2,"ChapterNumber":3,"Content":"sample string 4"},{"Id":"sample string 1","Number":2,"ChapterNumber":3,"Content":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfVerseUi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ia.Islamic.Cl.Model.Ui">
  <VerseUi>
    <ChapterNumber>3</ChapterNumber>
    <Content>sample string 4</Content>
    <Id>sample string 1</Id>
    <Number>2</Number>
  </VerseUi>
  <VerseUi>
    <ChapterNumber>3</ChapterNumber>
    <Content>sample string 4</Content>
    <Id>sample string 1</Id>
    <Number>2</Number>
  </VerseUi>
</ArrayOfVerseUi>