LogoLogo
Dev Portal
v2
v2
  • REST API
  • Overview
  • API REFERENCE
    • API Requests
    • Payments
    • Payouts
  • THESMARTWAY
    • Checkout Experience
      • Overview
    • API Requests
      • Transactions
      • Country Codes
      • Currency Codes
      • Document Types
      • Wallet
      • Our Status and Flow
    • Notification & Webhooks
      • Notifications
      • Get Secret
      • Events Signature
  • METHODS & MARKETS
    • PayIn
      • Overview
      • LATAM
        • Brazil
          • PIX
          • Bank Transfer
          • Credit Card
          • Boleto
          • PicPay
        • Peru
          • Bank Transfer
          • CIP
          • Wallet
          • Credit Card
        • Equador
          • Wallet
          • Bank Transfer
          • Mobile Money
        • Colombia
          • PSE
          • Nequi
          • Bancolombia
          • Transfiya
          • Efecty
        • Chile
          • Bank Transfer
          • Wallet
          • Credit Card
        • Bolivia
          • Wallet
        • México
          • Bank Transfer
        • Argentina
          • Bank Transfer
      • ASIA
        • India
          • Bank Transfer
    • PayOut
      • Overview
      • LATAM
        • Brazil
          • PIX
          • Bank Transfer
        • Colombia
          • Transfiya
          • Bank Transfer
        • Peru
          • Bank Transfer
        • Ecuador
          • Bank Transfer
          • Mobile Money
        • Chile
          • Bank Transfer
        • México
          • Bank Transfer
        • Bolivia
          • Bank Transfer
        • Argentina
          • Bank Transfer
      • ASIA
        • India
          • Bank Transfer
  • RESOURCES
    • FAQ & Support
      • How to get the token
      • Tests to validate your integration
Powered by GitBook
On this page
  1. METHODS & MARKETS
  2. PayIn
  3. LATAM
  4. Chile

Credit Card

Call the Payments API to request payments via Credit Card on Chile

Last updated 1 month ago

Here you'll find the specific parameters required for integrating this payment method in the selected country. These parameters are tailored to meet the unique requirements of this region and payment type. For a complete list of global parameters and detailed explanations, please refer to the page, where you'll find all the foundational elements that apply across different countries and methods.

POST /v2/payin

Request

curl -v --location --request POST 'https://sandbox.smartfastpay.com/v2/payin' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <Access-Token>' \
    --data-raw '{
        "customer": {
            "id": "58f0c005-3b7d-4c75-81f3-93b9a6fee864",
            "name": "Richard Roe",
            "email": "richard@roe.com",
            "document": {
                "number": "18667538",
                "type": "CI"
            },
            "phone": "+56956249181"
        },
        "transaction": {
            "id": "b08e3897-6505-4bb4-81a5-6e3a1d29e277",
            "currency": "CLP",
            "amount": 2200,
        },
        "country": "CHL",
        "payment_method": "credit_card",
        "notification_url": "http://mysite.com/api/notification"
    }'

Parameters details

Parameter
Type
Required
Description

customer.id

string

yes

Unique identifier for the customer in your system. This value should remain consistent across all transactions for the same customer

customer.name

string

yes

The full name of the customer making the payment. It should match the name on the customer's identification documents

customer.email

string

yes

The email address of the customer. This will be used for sending payment confirmations and notifications

customer.document.number

string

yes

The official identification number of the customer. This is typically a national ID, or other government-issued document

customer.document.type

string

yes

transaction.id

string

yes

A unique identifier for the transaction. This ID should be generated by your system to track the specific payment process

transaction.currency

string

yes

transaction.amount

decimal (10,2)

yes

The total amount of the transaction in the specified currency. This value should be a numeric amount (use dot instead of comma) Eg: 300.10

transaction.expire

integer (11)

no

The time in seconds until the transaction expires and is no longer valid

branch

string

no

The specific branch or location identifier where the transaction is being processed, if applicable

country

string

yes

payment_method

string

yes

The method of payment being used for the transaction, such as bank transfer, credit card...

notification_url

string

yes

The URL to which payment notifications will be sent. Ensure this URL is accessible and configured to handle the notification format

Response

{
    "requestId": "a2435636-5f69-447d-8e22-8382f62ef7dd",
    "data": {
        "id": "4a79f3b4-8d55-428b-a560-984fedd6f78a",
        "status": "pending",
        "expires_in": 1722108649,
        "payment": {
            "method": "bank_transfer",
            "url": "https://des.payku.cl/gateway/cobro?id=trxc8a0b60a7..."
        },
        "values": {
            "source_total": 27525.47,
            "source_currency": "CLP",
            "exchanged_total": 27525.47,
            "exchanged_currency": "CLP",
            "exchange": 1.00,
            "fee": 0
        }
    }
}
{
    "requestId": "b299549a8e75ead38c176932c3f59da0/13462186452875824120",
    "moreInformation": [
        {
            "code": "INVALID_REQUEST",
            "detail": "The transaction.id field is required."
        }
    ]
}

The type of document provided by the customer. Common types include national ID, or driver's license. .

The currency in which the transaction is being conducted. Use standard ISO 4217 currency codes (e.g., CLP). .

The country code where the transaction is taking place. The format is ISO 3166-1 alpha-3 (e.g., CHL).

Response details following the link:

Overview
overview
List of documents allowed
List of currency codes
List of country codes.