GET api/Read/getChaperList?tocid={tocid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tocid | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TocChaperListInfoName | Description | Type | Additional information |
---|---|---|---|
_id | string |
None. |
|
name | string |
None. |
|
link | string |
None. |
|
chapters | Collection of tocChaperInfo |
None. |
|
updated | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "_id": "sample string 1", "name": "sample string 2", "link": "sample string 3", "chapters": [ { "title": "sample string 1", "link": "sample string 2", "unreadble": true, "id": "sample string 4", "currency": 5, "isVip": true }, { "title": "sample string 1", "link": "sample string 2", "unreadble": true, "id": "sample string 4", "currency": 5, "isVip": true } ], "updated": "sample string 4" }
application/xml, text/xml
Sample:
<TocChaperListInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Data.View.View.Read"> <_id>sample string 1</_id> <chapters> <tocChaperInfo> <currency>5</currency> <id>sample string 4</id> <isVip>true</isVip> <link>sample string 2</link> <title>sample string 1</title> <unreadble>true</unreadble> </tocChaperInfo> <tocChaperInfo> <currency>5</currency> <id>sample string 4</id> <isVip>true</isVip> <link>sample string 2</link> <title>sample string 1</title> <unreadble>true</unreadble> </tocChaperInfo> </chapters> <link>sample string 3</link> <name>sample string 2</name> <updated>sample string 4</updated> </TocChaperListInfo>