search
Your Paytm for business app is working and will keep working beyond March 15th, 2024. Click to know more

POSTFetch Balance API

Use Case

To get the balance of Paytm Wallet and Paytm Postpaid. 

Request Attributes

Content Type : JSON

Head

AttributeDescription
requestTimeStamp
string
optional

Request time in mili-seconds.

channelId
string
optional

The parameter value identifies the Channel for which the API call is initiated.Default value will be WEB.
 

Possible values: WEB , WAP, APP, SYSTEM

token
string
mandatory

This is the unique transaction token
 

Example: ede0b9a1-e30d-4fa0-89fb-68221c3e9ff6

tokenType
string
mandatory

Token Type, Values that can be selected: TXN_TOKEN

Body

AttributeDescription
mid
string
mandatory

AI router provides MID as a unique identifier to each merchant.
 

Example: 216820000002516036253

orderId
string
mandatory

The Unique reference ID of the Order. It is alphanumeric and the max length is 50 characters.
 

Example: AOA001115.

payOptions
List<PayOptions>
mandatory

Payment options for which you need to fetch balance.

payOptions
+
AttributeDescription
payMethod
string
mandatory

Paytm payment mode for which you need to fetch the balance.
Possible values: PAYMENT_DIGITAL_CREDIT, WALLET

issuer
string
mandatory

Issuer name
Possible Value: PAYTM

Response Attributes

Content Type : JSON

Head

AttributeDescription
requestTimeStamp
string

Request time in mili-seconds.
 

Body

AttributeDescription
wallet
List<BalanceInfoResponseDetails>

Wallet balance

BalanceInfoResponseDetails
+
AttributeDescription
issuer
string

Name of the Instrument Issuer
Possible Value: PAYTM

balanceInfo
object

Balance information of payment options.

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

fundSufficient
Boolean

If the Balance is sufficient to complete the transaction the value will be true or else false

accountStatus
string

Account status
Possible Values: NOT_ACTIVE, DEACTIVE, ACTIVE, FROZEN, ON_HOLD

monthlySanctionLimit
object

Monthly sanction limit for the account

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

monthlyAvailableSanctionLimit
object

Monthly available limit from the total monthly sanctioned limit available

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

errorCode
string

Error code in case of an error or an exception

errorMessage
string

Error message in case of an error or an exception

bnpl
List<BalanceInfoResponseDetails>

Pay later / Postpaid Instruments balance

BalanceInfoResponseDetails
+
AttributeDescription
issuer
string

Name of the Instrument Issuer
Possible Value: PAYTM

balanceInfo
object

Balance information of payment options.

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

fundSufficient
Boolean

If the Balance is sufficient to complete the transaction the value will be true or else false

accountStatus
string

Account status
Possible Values: NOT_ACTIVE, DEACTIVE, ACTIVE, FROZEN, ON_HOLD

monthlySanctionLimit
object

Monthly sanction limit for the account

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

monthlyAvailableSanctionLimit
object

Monthly available limit from the total monthly sanctioned limit available

BalanceInfo
+
AttributeDescription
value
string

This parameter contains the amount to be charged to the customer and can have two places of decimal.
Example: 1.00

currency
string

This parameter indicates the currency in which the transaction amount is to be deducted.
Possible Values: INR

errorCode
string

Error code in case of an error or an exception

errorMessage
string

Error message in case of an error or an exception

resultInfo
Object

This parameter gives the information about the result of the API response

resultInfo
+
AttributeDescription
resultStatus
string

This parameter is the result specific to the phase of the transaction mentioned in the txnType field

resultCode
string

This is the resultCode corresponding to a particular message and is returned to the merchant. It's maximum length is 64.

resultMsg
string

This parameter is the result message which contains information about the result.

Response Codes & Messages

resultCoderesultStatusresultMsg
0000SSuccess
501FSystem error
1006FYour Session has expired
2006FMid is invalid
2012FOrderId is invalid
2222FInvalid request body
1011FInvalid {field name} For example: Invalid tokenType/ issuer/ payMode, etc
2016FWe are unable to fetch your balance, kindly try after sometime
2017FIssuer cannot be blank or Null
2018FInvalid sso token
2019FToken type cannot be blank or null
2020FTxn token cannot be blank or null
⇾
Staging
Production
https://stage-router.paytm.in/aoa-pay-option-service/v3/fetchBalancecopy icon
REQUEST
RESPONSE
CURL
JAVA
NODE
PHP
PYTHON
DOTNET
curl --location 'https://stage-router.paytm.in/aoa-pay-option-service/v3/fetchBalance' \
--header 'Content-Type: application/json' \
--data '{"head": {"requestTimestamp": "1655466060","channelId": "WEB","token": "59475303-f784-40b1-81c0-23218d7c790a","tokenType": "TXN_TOKEN"},"body": {"mid": "Your_MID_Here","orderId": "STAG_900494","payOptions": [{"payMethod": "WALLET","issuer": "PAYTM"},{"payMethod": "PAYTM_DIGITAL_CREDIT","issuer": "PAYTM"}]}}

 

copy icon