Netzme vSNAP
  • Introducing
  • Getting Started
  • API Reference
    • Toko Netzme
      • Credentials & Signature
      • Authentication
      • Create pin
      • Forgot pin
      • Get Balance Detail
      • Get Transaction List
      • Get Merchant Detail
      • Withdraw Inquiry
      • Get Information Withdraw
      • Get QRIS Acquire Transaction
      • Create Invoice
      • Create Invoice Transaction
      • Create Invoice QR MPM
      • Get Invoice Transaction
      • Payment Success Callback (Invoice)
      • Payment Success Callback (QRIS Non Invoice )
      • Payment Success Callback V2
        • Payment Success Callback QRIS
        • SNAP Payment Success Callback QRIS
      • Withdraw Status Notification
      • Deduct Deposit and Split Fee
      • Deposit
        • Create Invoice Transaction Topup Deposit
        • Inquiry Withdraw Deposit
        • Withdraw Deposit
        • Get Information Withdraw Deposit
        • Get Deposit Transaction
        • Get Balance Deposit
      • Withdraw Process
      • SNAP Asymmetric Signature
    • Netzme
      • Connect to Netzme
      • Credentials & Signature
      • Authentication
      • Get Account Status
      • Get Balance
      • Get History
      • Get Fixed Topup VA
      • Get Detail Qris
        • QRIS Static
        • QRIS Static With Amount & Percentage Fee
        • QRIS Dynamic
        • QRIS Dynamic with Fee
      • QRIS Payment
      • QRIS Payment Notification
      • Payment Bill
      • Payment Bill Notification
      • Payment Netzme Seamless
      • Upgrade Account Notification
      • Upgrade Account
Powered by GitBook
On this page
  1. API Reference
  2. Netzme

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"
}'
PreviousGet Account StatusNextGet History

Last updated 10 months ago

Header
Value

Content-Type

application/json

CHANNEL-ID

e.g 95221

X-EXTERNAL-ID

e.g 41807553358950093184162180797837

X-PARTNER-ID

Client id e.g NetmeClientId

X-SIGNATURE

Service’s signature (given at )

X-TIMESTAMP

Client's current local time in yyyy-MM-ddTHH:mm:ssTZD

Authorization

Client`s access for protected resources (given at )

X-CLIENT-SECRET

Client Secret (given at )

Authentication
transactional signature
Credential & Signature