POST api/Park/GetPageData

Request Information

URI Parameters

None.

Body Parameters

ParkQueryOption
NameDescriptionTypeAdditional information
name

string

None.

keyword

string

None.

park_type

string

None.

park_level

string

None.

investment_field

string

None.

province

string

None.

city

string

None.

county

string

None.

street

string

None.

page

integer

None.

limit

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "keyword": "sample string 2",
  "park_type": "sample string 3",
  "park_level": "sample string 4",
  "investment_field": "sample string 5",
  "province": "sample string 6",
  "city": "sample string 7",
  "county": "sample string 8",
  "street": "sample string 9",
  "page": 10,
  "limit": 11
}

application/xml, text/xml

Sample:
<ParkQueryOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <limit>11</limit>
  <page>10</page>
  <city>sample string 7</city>
  <county>sample string 8</county>
  <investment_field>sample string 5</investment_field>
  <keyword>sample string 2</keyword>
  <name>sample string 1</name>
  <park_level>sample string 4</park_level>
  <park_type>sample string 3</park_type>
  <province>sample string 6</province>
  <street>sample string 9</street>
</ParkQueryOption>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResult
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

count

integer

None.

data

Object

None.

otherdata

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "count": 1,
  "data": {},
  "otherdata": {}
}

application/xml, text/xml

Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <code>1</code>
  <count>1</count>
  <data />
  <msg>sample string 2</msg>
  <otherdata />
</ApiResult>