Skip to main content

Balance Inquiry

This is a service for getting the latest balance amount from a Finpay account, the account will be using the customer phone number as an identifier.

Technical Specification

Body Request

NoNameTypeMandatoryMin LengthMax LengthDescription
1 accountNoStringM116Customer phone number with 08xx format, must be the same as the number that correlates with B2B2C token.

Sample Request

{
"accountNo":"080012341234"
}

Body Response

NoNameTypeMandatoryMin LengthMax LengthDescription
1 responseCodeEnumM17BI SNAP Response Code.
2 responseMessageStringM1150BI SNAP Response Message.
3 accountNoStringO132Customer phone number from request body
4 nameStringO142Customer account name
5 accountInfosObjectO13Detail of Account Info

Sample Response

{
"responseCode": "2001100",
"responseMessage": "Request has been processed successfully",
"accountNo": "082136393400",
"name": "Testing Nandhief",
"accountInfos": [
{
"availableBalance": {
"value": "0.00",
"currency": "IDR"
},
"registrationStatusCode": "0001"
}
]
}