成都市“蓉易办”平台
  1. 跨域通办大屏
成都市“蓉易办”平台
  • 🦊一分钟,了解 Apifox !
  • APP移动端相关接口
    • 极简办-获取办件信息接口
      POST
    • 极简办-提交办件的接口
      POST
    • 极简办-获取历史材料接口
      POST
    • 获取乡镇街道
      POST
  • 跨域通办大屏
    • 获取全市通办数据接口
      POST
    • 获取办理点列表
      POST
    • 获取成渝通办总数据接口
      POST
    • 获取成渝通办分支数据接口
      POST
    • 获取成德眉资通办总数据接口
      POST
    • 获取成德眉资通办分支数据接口
      POST
  • 对外能力封装
    • 获取个人信息
      POST
    • 获取法人信息
      POST
    • 获取历史材料列表
      POST
  1. 跨域通办大屏

获取办理点列表

开发中
POST
/cdkytb/getcdhandleplacelist
列表数据源:
select placename,address,contactperson,contact from audit_kytb_handleplace where placetype='1' and areacode='入参areacode'

请求参数

Body 参数application/json
token
string 
必需
params
object 
必需
areacode
string 
区县辖区代码
必需
currentpage
integer 
必需
当前页面,第一页从0开始
pagesize
integer 
每页数量
必需
示例
{
    "token": "string",
    "params": {
        "areacode": "string",
        "currentpage": 0,
        "pagesize": 0
    }
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/cdkytb/getcdhandleplacelist' \
--header 'Content-Type: application/json' \
--data-raw '{
    "token": "string",
    "params": {
        "areacode": "string",
        "currentpage": 0,
        "pagesize": 0
    }
}'

返回响应

🟢200成功
application/json
Body
status
object 
必需
code
integer 
必需
text
string 
必需
custom
object 
必需
code
string 
响应代码
必需
text
string 
说明
必需
total
integer 
数据总数
必需
datalist
array [object {4}] 
辖区办理点列表
必需
示例
{
    "status": {
        "code": 0,
        "text": "string"
    },
    "custom": {
        "code": "string",
        "text": "string",
        "total": 0,
        "datalist": [
            {
                "name": "string",
                "address": "string",
                "tel": "string",
                "person": "string"
            }
        ]
    }
}
修改于 2023-09-07 03:23:02
上一页
获取全市通办数据接口
下一页
获取成渝通办总数据接口
Built with