Accept only Card Payment
How to send a payment request that users can only pay with card.
To accept only card payment, simply add the a method field to your payload with value CARD-PAYMENT. Note that this field is case sensitive.
POST https://sandbox.intasend.com/api/v1/checkout/
Content-Type: application/json
{
"first_name": "Joe",
"last_name": "Doe",
"email": "[email protected]",
"method" : "CARD-PAYMENT",
"amount" : 10,
"currency" : "USD"
}
Updated 9 months ago