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']"
    }
}
| Parameters | Type | Details | Example | 
|---|
| kwikx_wallet_id | string, required | Payout & Payroll wallet ID provided by KwikPaisa NEO Bank | 1717549586 | 
| Error Code | Message | 
|---|
| 200 | API authentication successful! | 
| 400 | Missing authentication parameters | 
| 401 | Unauthorized - API authentication failed | 
| 403 | Incoming IP address is not whitelisted | 
| 405 | Unauthorized - Passed method not allowed | 
| 409 | Request is not unique or correct | 
| 422 | Missing required fields in body data or invalid JSON data | 
| 500 | Server Error |