# API Jump Service List Page
# Service list page
# Configuration parameter
# Request parameters:
Field name | Chinese Interpretation | type | Required Required | Introductions |
---|---|---|---|---|
city_name | City name | String | yes | The name of the city shall be determined by the prefecture-level city |
page_type | Type of page | Int | yes | For service list page, fill in 5 |
ext_params | Additional parameters | Object Array | yes | Additional parameters, including keywords and other parameters |
Among which ext_The params type is Object Array, a key-value column, contains the following fields:
Field name | Chinese Interpretation | type | Required Required | Introductions |
---|---|---|---|---|
key | key | String | yes | The key name of the keyword is topped by the keyword |
value | value | String | yes | Service list name (based on the label name of the city service) |
# Return parameter:
Field name | Chinese Interpretation | type | Introductions |
---|---|---|---|
Errcode | Status code | Int | Return status code |
errmsg | Error type | String | Returns information, if errcode is not 0, errmsg is error message |
path | Result path | String | Service list path |
app_id | Mini Program id | String | |
username | Original id | String |
Enter the example:
{
"city_Name ": Guangzhou,
"page_type":5,
"ext_params":[
{
"key":"keyword",
"value": "Registered doctor"
}
]
}
Returns an example:
{
"errcode":0,
"errmsg":"ok",
"path":"path/xxx/xxx",
"app_id":"wx322xxxx",
"username":"gh_xxx"
}