Skip to main content

Local card payments in Chile

You can make local card payments in Chile.

Currency: CLP
Minimum payment amount: 50 CLP
Maximum payment amount: unlimited
Available payment systems: Visa Credit, Visa Debit, Mastercard Credit, Mastercard Debit, American Express, CMR, Mach

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.

Mandatory parameters

NameTypeDescription
amount_detailsobjectPayment amount details
  amountintPayment amount in decimal format. To send 100 USD, write 10000
  currencystringISO 4217 currency code. Case insensitive. Always: clp
payment_detailsobjectPayment data
  senderobjectSender details
    full_namestringSender's full name (3–50 characters)
    emailstringSender's email address (up to 64 characters before @)

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",
"amount_details": {
"amount": 10000,
"currency": "clp"
},
"payment_details": {
"sender": {
"full_name": "Jane Doe",
"email": "janedoe@mymail.com"
}
}
}'

Response example

curl -X POST \
https://partner.com \
-H 'content-type: application/json' \
-H 'X-PARTNER-SIGN: signature' \
-d '{
"status": "ok",
"session": {
"id": "ps_3230",
"status": "in_progress",
"created_at": "2025-05-27T02:03:00.000000Z",
"updated_at": "2025-05-27T02:03:00.000000Z",
"acquiring_payments": [{
"id": "pm_203",
"status": "in_progress",
"created_at": "2025-05-27T02:03:00.000000Z",
"amount_details": {
"amount": 10000,
"currency": "clp"
},
"payment_details": {
"sender": {
"full_name": "Jane Doe",
"email": "janedoe@mymail.com"
}
}
}]
}
}'