GET api/v1/pages/page/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiWebPage| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| path | string |
None. |
|
| title | string |
None. |
|
| text | string |
None. |
|
| imgs | Collection of ApiImage |
None. |
|
| visiblehp | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"path": "sample string 2",
"title": "sample string 3",
"text": "sample string 4",
"imgs": [
{
"title": "sample string 1",
"text": "sample string 2",
"url": "sample string 3"
},
{
"title": "sample string 1",
"text": "sample string 2",
"url": "sample string 3"
}
],
"visiblehp": true
}