Example Request
curl -X POST https://bnna-pay-1/api/pay/sources \
-H 'Content-Type: application/json' \
-d '{
"email": "john@example.com",
"phone": "+18015551234",
"cardholder": "ACME Inc",
"pan": "4242-4242-4242-4242",
"exp": "01/99",
"cvc": "111",
"label": "Business Visa",
"postal_code": "84601-6099"
}'
Example Response
{
"success":true,
"result": {
"token_id":"xxxxxxxx-xxxx-4xxx-8xxx-xxxxxxxxxxx"
}
}