Get Balance
POST
https://apisnap-stg.netzme.com/api/v1.0/payment/balance-inquiry
Parameter
Data Type
Description
partnerReferenceNo
String
API request identifier from the user's system, unique for each request
accountNo
String
contains customer id
Request Body
{
"partnerReferenceNo": "bitdna012398120312",
"accountNo": "XzIz2nVo"
}
Parameter
Data Type
Description
responseCode
String
(HTTP status code + service code + case code)
responseMessage
String
Description of responseCode
partnerReferenceNo
String
API request identifier from the user's system
accountInfos
Array Object
balanceType
String
Balance type
availableBalance
Object
value
String
Value of availableBalance
currency
String
Currency of availableBalance
additionalInfo
Object
ts
String
Timestamp in long
type
String
e.g: get_aggregator_balance
Response Body
{
"responseCode": "2001100",
"responseMessage": "Successfull",
"partnerReferenceNo": "testing012398120312",
"accountInfos": [
{
"balanceType": "Cash",
"availableBalance": {
"value": "0.00",
"currency": "IDR"
}
},
{
"balanceType": "Points",
"availableBalance": {
"value": "0.00",
"currency": "IDR"
}
}
],
"additionalInfo": {
"ts": "1663940662217",
"type": "get_aggregator_balance"
}
}
curl --location --request POST 'https://apisnap-stg.netzme.com/api/v1.0/payment/balance-inquiry' \
--header 'X-TIMESTAMP: 2022-08-10T00:00:00+07:00' \
--header 'X-CLIENT-SECRET: 7c6a4520ab5a46b09d7ef4cd1520cdda' \
--header 'X-SIGNATURE: 8742025e464aec792cb9a0cb895d6bd88b0c2cab796418a9a27a5e3aeec76554b68042b82ca1a74f7d9079abadb102a6d8c5472de61d580438cae20aa9c0f219' \
--header 'Content-Type: application/json' \
--header 'Authorization: eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NjM5NDEzMDQsImlhdCI6MTY2Mzk0MDQwNCwiaXNzIjoiNzY0YmE2ZGE1YzA3NGVhNzgwMjBhZmQ4MjlkNWZjOTMiLCJyb2wiOiJjaGVjayJ9.98JDmDRRZ_xB8BBm_1hHPC_ftnFKe1u2eGrUAZyeRycyhcJoquS7QgLC6xGj_4Zp53tyfZ1C05ErO3W3T4eZAg' \
--header 'X-PARTNER-ID: NetmeClientId' \
--header 'X-EXTERNAL-ID: 41807553358950093184162180797837' \
--header 'CHANNEL-ID: 95221' \
--data-raw '{
"partnerReferenceNo":"testing012398120312"
"accountNo":"XzIz2nVo"
}'
Last updated