cURL
curl --request POST \ --url https://api.paytring.com/api/v1/info/bin \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>", "bin": "<string>", "hash": "<string>" }'
"{}"
This api is for merchants integrating order process api and want to check if customer provided vpa is valid or not.
{ "key": "string", // Merchant API key "card_number": "string", // Card number "expiry_date": "string", // Card expiry date in MM/YY format "cvv": "string", // Card CVV "hash": "string" // Calculated hash for request validation }
{ "status": true, "message": "Card is valid", "card_type": "string" }
{ "status": false, "error": { "message": "Invalid card details", "code": 400 } }
200
The response is of type object.
object