查询信用币种列表
/api/shipper/v1/finance/actBillingAccount/queryCreditByRequest |
GET |
参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
sessionId | String | 是 | 登录会话ID |
language | String | 是 | 语言 |
Accept | String | 是 | application/json, text/plain, / |
语言取值:
值 | 说明 |
|---|---|
zh_CN | 中文 |
en_US | 英文 |
字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
pageNum | Integer | 是 | 页码,默认 1 |
pageSize | Integer | 是 | 每页大小,默认 100 |
pageNumber | Integer | 否 | 页码(备用,同 pageNum) |
curl 'https://tracking-qa.etowertech.com/api/shipper/v1/finance/actBillingAccount/queryCreditByRequest?pageNum=1&pageSize=100&pageNumber=1' \ -H 'Accept: application/json, text/plain, */*' \ -H 'language: zh_CN' \ -H 'sessionId: 0HgJ-EO-Sq_ZQ6u93rjMnA' |
{
"success": true,
"code": "0",
"data": {
"content": [
{
"uuid": "5hV01I9d8IktQoYId0s10A",
"partyId": 100,
"currency": "CHF",
"balance": -216.0,
"interimCredit": 0.0,
"frozenAmount": 0.0,
"notRecordedAdjustAmount": 0.0,
"creditControl": true,
"creditTerm": 0.0,
"creditLimit": 0.0,
"shareCredit": true,
"shareCreditCurrency": "CNY",
"autoOffset": true,
"graceTerm": 0.0,
"preDeposit": 0.0,
"lastPaymentDate": null,
"remark": "yyy5555test",
"createdBy": 250000100,
"modifiedBy": 250000100,
"dateCreated": "2021-06-16 18:16:21",
"dateModified": null
},
{
"uuid": "9YwVVJhopYp8RZl499ltMQ",
"partyId": 100,
"currency": "SGD",
"balance": -376.51,
"interimCredit": 0.0,
"frozenAmount": 0.0,
"notRecordedAdjustAmount": 0.0,
"creditControl": true,
"creditTerm": 0.0,
"creditLimit": 0.0,
"shareCredit": true,
"shareCreditCurrency": "CNY",
"autoOffset": true,
"graceTerm": 0.0,
"preDeposit": 0.0,
"lastPaymentDate": "2025-11-13 00:00:00",
"remark": "yyy5555test"
},
{
"uuid": "Ej2blT2ku7YNTUrGpypgnA",
"partyId": 100,
"currency": "USD",
"balance": -660008.0,
"interimCredit": 0.0,
"frozenAmount": 0.0,
"notRecordedAdjustAmount": 44.0,
"lastPaymentDate": "2025-10-27 00:00:00"
}
],
"total": 23,
"numberOfElements": 23
},
"errors": []
}
|
字段 | 类型 | 说明 |
|---|---|---|
success | Boolean | 请求是否成功 |
code | String | 响应状态码,"0"表示成功 |
data | Object | 返回数据对象 |
errors | Array | 错误信息列表 |
字段 | 类型 | 说明 |
|---|---|---|
content | Array | 信用币种列表数据 |
total | Number | 总记录数 |
numberOfElements | Number | 当前页元素数量 |
字段 | 类型 | 说明(国际化key) |
|---|---|---|
currency | String | 币种 |
balance | Number | 余额 |
notRecordedAdjustAmount | Number | 未入账调整费用 |
frozenAmount | Number | 冻结金额 |
lastPaymentDate | String | 最新付款时间 |