Local card payments in Egypt
You can make local card payments in Egypt.
Currency: EGP
Minimum payment amount: 5 EGP
Maximum payment amount: unlimited
Available payment systems: Visa, Visa Debit, Mastercard, Mastercard Debit, Meeza
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 | Fourteen-digit identifier number (ID) |
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": "12345678901234"
}
},
"amount_details": {
"amount": 11000,
"currency": "egp"
},
"customer": {
"reference": "lucky"
},
"payment_options": {
"return_url": "https://website.com"
}
}'