Description and Details

  • This API is used to confirm the availability of funds in a given account before a payment or transfer is initiated. It allows service providers or banks to verify whether the specified account has sufficient balance for a specified amount, ensuring that the transaction can proceed without failure due to insufficient funds.


Endpoint

https://api-dev-isolution.xyz/fundconfirmation

Verb Method

POST


Headers Request Parameters

Header KeyValueDescription
Content-Typeapplication/jsonSpecifies the media type of the request body
Acceptapplication/jsonExpected response format
AuthorizationBearer {token}OAuth 2.0 token for authorization

Body Request Parameters
 

ParameterTypeRequiredDescription
accountNumberstringYesThe account number to check
amountstringYesThe amount to verify availability for
currencystringYesCurrency code (e.g., PKR, USD)
referencestringNoOptional reference message

Response Parameters

ParameterTypeDescription
fundAvailablebooleantrue if sufficient funds are available
accountBalancestringCurrent available balance (optional)
currencystringCurrency of the account
messagestringHuman-readable status message

HTTP Codes

CodeMeaning
200OK – Fund check successful
400Bad Request – Missing or invalid request body
401Unauthorized – Invalid or missing token
403Forbidden – Access denied
500Internal Server Error