POST api/bible/random/{version}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
Required |
Body Parameters
Collection of BookChapterVerse| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
None. |
|
| Chapter | integer |
None. |
|
| VerseNumber | integer |
None. |
|
| VerseText | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"bookId": 1,
"chapter": 2,
"verseNumber": 3,
"verseText": "sample string 4"
},
{
"bookId": 1,
"chapter": 2,
"verseNumber": 3,
"verseText": "sample string 4"
}
]
text/html
Sample:
[{"bookId":1,"chapter":2,"verseNumber":3,"verseText":"sample string 4"},{"bookId":1,"chapter":2,"verseNumber":3,"verseText":"sample string 4"}]
application/xml, text/xml
Sample:
<ArrayOfBookChapterVerse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ABOM.ArabicBible.DomainModels">
<BookChapterVerse>
<BookId>1</BookId>
<Chapter>2</Chapter>
<VerseNumber>3</VerseNumber>
<VerseText>sample string 4</VerseText>
</BookChapterVerse>
<BookChapterVerse>
<BookId>1</BookId>
<Chapter>2</Chapter>
<VerseNumber>3</VerseNumber>
<VerseText>sample string 4</VerseText>
</BookChapterVerse>
</ArrayOfBookChapterVerse>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.