跳转至

查询单笔水电煤支付的详细信息

查询单笔水电煤支付的详细信息

查询指定钱包的某一笔水电煤交付的详细信息

HTTP请求

GET /wallets/{{walletId}}/utility/{{transactionId}}

Request Headers
{
    "Authorization": "Bearer {{access_token}}"
}
Content-Type: application/json
{
    "externalIdentifier": "280a03fc-2255-11eb-adc1-0242ac120002",
    "digitableLine": "836300000038519200481009600737826013000495468878",
    "amount": 100,
    "currency": "BRL",
    "dueDate": "2021-01-01",
    "transferStatus":"IN_PROGRESS",
    "transferErrorMsg": null
}

HTTP Headers 字段说明

Key Value
Authorization "bearer"+ "" + {{access_token}}

路径参数

参数 是否必填 类型 描述
walletId String 被查询钱包的钱包ID
transactionId String 被查询的单笔水电煤支付的交易号

Response Body 字段说明

参数 类型 描述
externalIdentifier String 交易的交易号
amount String 支付金额
currency String 支付金额的货币代码
digitableLine String 账单号码
dueDate String 账单的交付期限,格式 YYYY-MM-DD
transferStatus String 交易状态,枚举值,SETTLED, IN_PROGRESS 或者 FAILED。
transferErrorMsg String 如果交易失败,返回的错误信息
回到页面顶部