查询企业地址
POST
/api/open/v3/enterprise/address/query
请求参数
Body 参数application/json
body
object (EnterpriseAddressQueryV3Param)
必需
conditions
object (EnterpriseAddressConditionsV3Param)
查询条件
paging
object (PagingParams)
分页参数
示例
{
"body": {
"conditions": {
"code": {
"conditionType": "KEYWORD",
"value": "123521"
}
},
"paging": {
"start": 0,
"length": 10
}
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sit.newcoretech.com/api/open/v3/enterprise/address/query' \
--header 'Content-Type: application/json' \
--data-raw '{
"body": {
"conditions": {
"code": {
"conditionType": "KEYWORD",
"value": "123521"
}
},
"paging": {
"start": 0,
"length": 10
}
}
}'
返回响应
🟢200成功
application/json
Body
code
integer
可选
message
string
可选
data
object (ListPagingResponseDataEnterpriseAddressDTO)
可选
list
array[object (EnterpriseAddressDTO) {13}]
可选
start
integer
可选
length
integer
可选
recordsTotal
integer
可选
示例
{
"code": 0,
"message": "",
"data": {
"list": [
{
"code": "",
"countryCode": "",
"provinceCode": 0,
"cityCode": 0,
"districtCode": 0,
"province": "",
"city": "",
"district": "",
"detail": "",
"contacts": "",
"mobile": "",
"phone": "",
"fax": ""
}
],
"start": 0,
"length": 0,
"recordsTotal": 0
}
}