cURL
curl --request POST \ --url https://api.mobiska.com/v1/payment_account_lookup \ --header 'Content-Type: application/json' \ --data ' { "service_id": 123, "pan": "<string>", "nw": "<string>" } '
{ "response_code": "<string>", "response_message": "<string>", "response_data": { "account_name": "<string>", "account_status": "<string>", "account_type": "<string>" } }
Verify and retrieve payment account information
curl -X POST https://api.mobiska.com/v1/payment_account_lookup \ -H "Authorization: Basic YOUR_ENCODED_API_KEYS" \ -H "Content-Type: application/json" \ -d '{ "service_id": 1, "pan": "0541840988", "nw": "MTN" }'
Show Toggle object
{ "response_code": "000", "response_message": "Account found", "response_data": { "account_name": "John Doe", "account_status": "active", "account_type": "mobile_money" } }