Skip to content

Retrieve Utility Payment Detail

Retrieve Utility Payment Detail

Retrieve the detail information of specific utility payment which are associated with the reported wallet.

HTTP Request

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 Details

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

PATH and Query Parameters

Parameter Required Type Description
walletId String The wallet ID which the fund comes from
transactionId String The transaction ID

Response Body Details

Parameter Type Description
externalIdentifier String Unique key to ensure idempotent requests
amount String The transfer amount
currency String The currency of the transferred fund
digitableLine String Numeric representation of the bar code
dueDate String The expire data for bill, format as YYYY-MM-DD
transferStatus String Transfer status, settled, in progress or failed
transferErrorMsg String Transfer error message if failed
Back to top