GET api/StoryList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TopicViewModelName | Description | Type | Additional information |
---|---|---|---|
StoryNumber | integer |
None. |
|
TopicId | integer |
None. |
|
Title | string |
None. |
|
TopicNumber | integer |
None. |
|
Level | string |
None. |
|
TargetWcpm | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "StoryNumber": 3, "TopicId": 1, "Title": "sample string 2", "TopicNumber": 3, "Level": "sample string 4", "TargetWcpm": 5 }, { "StoryNumber": 3, "TopicId": 1, "Title": "sample string 2", "TopicNumber": 3, "Level": "sample string 4", "TargetWcpm": 5 } ]
application/xml, text/xml
Sample:
<ArrayOfTopicViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Objects.StoryObjects"> <TopicViewModel> <Level>sample string 4</Level> <TargetWcpm>5</TargetWcpm> <Title>sample string 2</Title> <TopicId>1</TopicId> <TopicNumber>3</TopicNumber> </TopicViewModel> <TopicViewModel> <Level>sample string 4</Level> <TargetWcpm>5</TargetWcpm> <Title>sample string 2</Title> <TopicId>1</TopicId> <TopicNumber>3</TopicNumber> </TopicViewModel> </ArrayOfTopicViewModel>