- 宜泊科技标准接口文档v3.0
- 3.1-接口规范
- 3.2-合作商调用接口
- 3.2.1-临停缴费
- 3.2.2-CRM系统优惠接入
- 3.2.3-抵扣券业务
- 3.2.4-月租/固定车同步
- 3.2.5-道闸接口
- 3.2.6-共享停车6.0
- 3.2.7-剩余车位查询
- 3.2.8-时段月租同步业务
- 3.2.9-电子发票平台接口
- 3.2.10-锁车业务
- 3.2.11-白名单同步接口
- 3.2.12-新增酒店车
- 3.2.13特殊车辆操作
- 3.2.14查询在场车全量数据POST
- 3.3-上报合作商接口
- 3.4-CPGS
月租费率按车场查询
testlpn
testlpn
POST
http://testlpn.ebopark.com/partnerService/QueryMonthRule
请求参数
Query 参数
partnerid
string
必需
示例值:
test
sign
string
必需
示例值:
ebo2019
Body 参数application/json
ParkCode
string
必需
示例
{
"ParkCode": "140123001"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://testlpn.ebopark.com/partnerService/QueryMonthRule?partnerid=test&sign=ebo2019' \
--header 'Content-Type: application/json' \
--data-raw '{
"ParkCode": "140123001"
}'
返回响应
🟢200成功
application/json
Body
state
integer
0成功,其他失败见错误编码
total
integer
必需
result
array [object {7}]
必需
amount6
integer
费率对应应收金额,单位(元) 6个月金额
amount3
integer
费率对应应收金额,单位(元) 3个月金额
amount1
integer | number
费率对应应收金额,单位(元) 1个月金额
chargeType
string
费率类型,月租month,固定车:FIX
ruleName
string
费率名称
ruleId
integer
费率id
amount12
integer
费率对应应收金额,单位(元) 12个月金额
示例
{
"state": 0,
"total": 0,
"result": [
{
"amount6": 360,
"amount3": 180,
"amount1": 60,
"chargeType": "MONTH",
"ruleName": "月租六十",
"ruleId": 352,
"amount12": 720
},
{
"amount6": 18,
"amount3": 9,
"amount1": 3,
"chargeType": "FIX",
"ruleName": "管理费三十",
"ruleId": 354,
"amount12": 36
},
{
"amount6": 50,
"amount3": 30,
"amount1": 0.02,
"chargeType": "MONTH",
"ruleName": "月租VIP-月租10元",
"ruleId": 3623,
"amount12": 90
},
{
"amount6": 1200,
"amount3": 600,
"amount1": 200,
"chargeType": "MONTH",
"ruleName": "月租200",
"ruleId": 3640,
"amount12": 2400
}
]
}
修改于 2024-12-05 01:55:11