Local card payments in India
You can make local card payments in India.
Currency: INR
Minimum payment amount: 1 INR
Maximum payment amount: unlimited
Available payment systems: Visa, Visa Debit, Mastercard, Mastercard Debit, American Express, Diners Club, Maestro Debit, RuPay
To make a payment, complete the standard steps.
info
If you use our widget, pass the mandatory parameters in the session/create method.
Otherwise, you can pass the mandatory parameters either in session/create or in session/start/payment.
Required sender parameters
| Name | Type | Description |
|---|---|---|
sender | object | Sender details |
full_name | string | Sender's full name (3–50 characters) |
email | string | Sender's email address (up to 64 characters before @) |
document | string | Ten-character alphanumeric identifier (PAN) |
msisdn | string | Phone number (up to 15 characters, without + ) |
state | string | Sender's state (up to 10 characters) Mandatory for cross-border transactions only |
city | string | Sender's city (3–50 characters) Mandatory for cross-border transactions only |
street | string | Sender's street (4–100 characters) Mandatory for cross-border transactions only |
postal_code | string | Sender's postal code (up to 6 characters) Mandatory for cross-border transactions only |
building | string | Sender's building Mandatory for cross-border transactions only |
Request example
curl -X POST \
https://demo.smart-glocal.com/api/v1/session/start/payment \
-H 'content-type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'X-PARTNER-SIGN: signature' \
-d '{
"session_id": "ps_3230",
"payment_details": {
"type": "card",
"card": {
"type": "bank_card",
"bank_card": {
"number": "4242424242424242",
"expiration_month": "05",
"expiration_year": "25",
"security_code": "123"
}
},
"sender": {
"full_name": "Jane Doe",
"email": "janedoe@mymail.com",
"document": "EHFGA5967A",
"msisdn": "8826320796",
"state": "Goa",
"city": "Goa ",
"street": "Maddo Vaddo",
"building": "1207",
"postal_code": "93401"
}
},
"amount_details": {
"amount": 10000,
"currency": "inr"
},
"customer": {
"reference": "lucky"
},
"payment_options": {
"return_url": "https://website.com"
}
}'