API Reference
curl  --request POST \
 --url {{Payout_UAT_Base_URL}}/payment/account_info \
 --header 'Content-Type: application/json' \
 --header 'x-client-id: <AppID>' \
 --header 'x-client-secret: <AppIDSecretKey>' \
 --header 'order-source: reset-api' \
--data '{
	"kwikx_wallet_id": "<KwikXWalletID>"
}'
{
  "code": "200",
  "status": "success",
  "message": "API authentication successful!",
  "return_data": {
    "kwikx_wallet_id": "<KwikXWalletID>",
    "default_currency": "INR",
    "wallet_balance": "9989.88"
  }
}
{
    "code": "401",
    "status": "failed",
    "message": "API authentication failed!",
    "return_data": {
        "description": "Unauthorized - API authentication failed ['Wallet not associated']"
    }
}
ParametersTypeDetailsExample
kwikx_wallet_idstring, requiredPayout & Payroll wallet ID provided by KwikPaisa NEO Bank1717549586
Error CodeMessage
200API authentication successful!
400Missing authentication parameters
401Unauthorized - API authentication failed
403Incoming IP address is not whitelisted
405Unauthorized - Passed method not allowed
409Request is not unique or correct
422Missing required fields in body data or invalid JSON data
500Server Error