GET api/Examples/getAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of res| Name | Description | Type | Additional information |
|---|---|---|---|
| title | string |
None. |
|
| content | string |
None. |
|
| ctgry_count | integer |
None. |
|
| img_path | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"title": "sample string 1",
"content": "sample string 2",
"ctgry_count": 3,
"img_path": "sample string 4"
},
{
"title": "sample string 1",
"content": "sample string 2",
"ctgry_count": 3,
"img_path": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfExamplePartController.res xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoetAPI.Controllers">
<ExamplePartController.res>
<content>sample string 2</content>
<ctgry_count>3</ctgry_count>
<img_path>sample string 4</img_path>
<title>sample string 1</title>
</ExamplePartController.res>
<ExamplePartController.res>
<content>sample string 2</content>
<ctgry_count>3</ctgry_count>
<img_path>sample string 4</img_path>
<title>sample string 1</title>
</ExamplePartController.res>
</ArrayOfExamplePartController.res>