GET api/TopicList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Topic| Name | Description | Type | Additional information |
|---|---|---|---|
| topicId | string |
None. |
|
| name | string |
None. |
|
| imageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"topicId": "sample string 1",
"name": "sample string 2",
"imageUrl": "sample string 3"
},
{
"topicId": "sample string 1",
"name": "sample string 2",
"imageUrl": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfTopic xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi">
<Topic>
<imageUrl>sample string 3</imageUrl>
<name>sample string 2</name>
<topicId>sample string 1</topicId>
</Topic>
<Topic>
<imageUrl>sample string 3</imageUrl>
<name>sample string 2</name>
<topicId>sample string 1</topicId>
</Topic>
</ArrayOfTopic>