1. Online Payments
  • API Docs Chile 🇨🇱
  • Online Payments
    • Release Notes
    • Card Payments
      • Request a card token
      • Create payment (tokenless)
      • Make a charge or deferred charge
      • Void a transaction
      • Refund a transaction
      • Request deferred options
      • Authorize payments
      • Preauthorization (tokenless)
      • Reauthorize payments
      • Capture an authorized payment
      • Verify Account
      • Validate OTP
      • Bin Info V2
      • Bin Info
      • Voucher
    • One-Click & Scheduled Payments
      • Request a recurring charge token
      • Create a recurring charge
      • Update recurring charge card data
      • Make an One-click payment
      • Cancel a recurring charge
      • Update a recurring charge
      • Add a temporary charge or discount
      • Authorize payments
      • Capture an authorized payment
      • Get recurring charge Info
    • Card Async
      • Request a card async token
      • Init Transaction
      • Authorize payments
      • Capture an authorized payment
      • Get Status
    • Async Card Recurring Charges
      • Request an async card recurring charge token
      • Init an async card recurring charge
      • Authorize payments
      • Capture an authorized payment
    • Chargebacks
      • Query chargebacks
      • Request chargeback export
    • Transfer In
      • Get Bank List
      • Request a Transfer In token
      • Init Transaction
      • Get Status
    • Transfer Out
      • Get Bank List
      • Get Bank List V2
      • Request a Transfer Out token
      • Init Transaction
      • Get Status
      • Balance for Payouts
    • Cash In
      • Request a cash in token
      • Init Transaction
      • Transaction Status
    • Smartlinks V2
      • Create a Smartlink
      • Get a Smartlink
      • Delete a smartlink
      • Update a Smartlink
    • Payment Button
      • Create a payment button
    • Analytics
      • Get transactions list v1
      • Get transactions list v2
    • Status
      • Get platform status
      • Get gateway status
    • Subscription Transactions
      • Get subscription transactions
    • Payment Credentials
      • Create a credential
      • Search credentials
      • Update credential
      • Regenerate a credential
      • Delete credential
      • Activate or deactivate
      • Advanced search
    • Settlement
      • Query settlement
  • API Raw Card Present Payments
    • Release Notes
    • Error Catalog
    • Test Data
    • Key Exchange Process
    • One-time payments
      • Single payment
    • Two-step-payments
      • Authorization and capture
    • Voids & Refunds
      • Refund a transaction
      • Void & Reverse
    • Card information
      • Get BIN Info
      • Bin Info V2
      • Request deferred options
    • Query Transactions
      • Transaction Search
    • Webhooks
      • Introduction
      • Good practices
      • Refunds
      • Card Payments
      • Check your webhooks
  • Kushki One
    • Cloud Services
      • Payment
        • Charge
        • Authorization (Pre-auth)
        • Capture
        • Re-authorization
        • Post-tip
        • Void
        • Refund
        • Abort
      • Search
        • Transaction Search
      • Print
        • Create Print Job
        • Get Print Job Status
    • Local Services
      • Payment
        • Charge
        • Authorization (Pre-auth)
        • Capture
        • Re-authorization
        • Post-tip
        • Void
        • Refund
        • Abort
      • Search
        • Transaction Search — Online
        • Transaction Search — Local
      • Print
        • Create Print Job
        • Get Print Job Status
        • Print Job Webhook (inbound — implemented by your POS)
  • Appian - Submerchant Register
    • Submerchant Validation in Batch
    • Query submerchant status by requestId/submerchantId
    • Get submerchantIds
    • Get credentials for submerchants
  • Schemas
    • RequestBodies
      • one-and-two-step-payment
    • documentType
    • Amount-cash-in
    • amount
    • Card
    • ChargebackListResponse
    • Channel
    • StatusComponent
    • SubscriptionTransactionsResponse
    • SettlementDateRangeRequest
    • AmountWithTaxes
    • PrintJobRequest
    • networkToken
    • extra_taxes
    • ChargebackItem
    • SubscriptionTransaction
    • SettlementTicketRequest
    • AmountCore
    • CommandText
    • webhooks
    • card
    • Amount-CL
    • webhooksItem
    • ErrorResponse400
    • SettlementResponse
    • ExtraTaxes
    • CommandColumns
    • headers
    • currency
    • Amount
    • card_details
    • ErrorResponse401
    • SettlementRecord
    • ColumnItem
    • Metadata
    • transactionType
    • enc_tlv
    • ErrorResponse403
    • ErrorResponse
    • TransactionResponse
    • CommandDivider
    • extraTaxes
    • Country
    • binInfo
    • Deferred
    • deferred
    • ErrorResponse500
    • payment_method
    • RawResponse
    • CommandFeed
    • SubscriptionUpdate
    • pos_details
    • CardData
    • CommandSpace
    • ContactDetails
    • Language
    • contact_details
    • sub_merchant
    • AmountWithTip
    • CommandCut
    • Subscription
    • metadata
    • LinkFailure
    • CommandImage
    • orderDetails
    • TransactionSearchRequest
    • CommandQR
    • Shipping Address
    • payment_submethod
    • CommandBarcode
    • Billing-Address
    • PrinterError
    • product
    • PrintJobStatus
    • threeDomainSecure
    • SubscriptionAdjustmentRequest
    • PrintWebhookPayload
    • webhooksChargeback
    • citMit
    • network
    • messageFields
    • UnexpectedErrorResponse
    • ExternalReferenceId
    • ExternalSubscriptionId
BienvenidaPerú 🇵🇪México 🇲🇽Ecuador 🇪🇨Colombia 🇨🇴Chile 🇨🇱
BienvenidaPerú 🇵🇪México 🇲🇽Ecuador 🇪🇨Colombia 🇨🇴Chile 🇨🇱
  1. Online Payments

Async Card Recurring Charges

Async Card Recurring Charges is a Chile-exclusive service that registers a customer's card for recurring charges through Transbank's Webpay portal. The customer is redirected to Webpay to authenticate and authorize the card registration — after that, you can charge the registered card on a schedule or on demand using the standard One-Click endpoints.
Chile only 🇨🇱
This service is available exclusively in Chile. It requires an active Transbank/Webpay integration enabled on your Kushki account.

How it works#

1
Request an async recurring charge token
Call POST /subscriptions/v1/card-async/tokens with the currency, email, and the URL to return the customer to after registration.
{
  "currency": "CLP",
  "email": "user@example.com",
  "callbackUrl": "https://yoursite.com/subscription/return"
}
Returns a one-time token valid for 30 minutes.
⚠️ PCI note: You may optionally include cardNumber directly in this request, but only if your backend is PCI DSS compliant.
2
Init the async recurring charge
Call POST /subscriptions/v1/card-async/init with the token, plan details, amount, and billing start date. The response returns a redirectUrl and subscriptionId.
{
  "token": "AbCDef123456Z7Ghi8901234jkLMNopQ",
  "planName": "Plan Mensual",
  "periodicity": "monthly",
  "startDate": "2026-06-01",
  "amount": {
    "subtotalIva": 0,
    "subtotalIva0": 10000,
    "iva": 0,
    "ice": 0,
    "currency": "CLP"
  },
  "contactDetails": {
    "documentType": "RUT",
    "documentNumber": "12345678-9",
    "firstName": "Catalina",
    "lastName": "Fuentes",
    "email": "user@example.com",
    "phoneNumber": "+56912345678"
  },
  "language": "es",
  "fullResponse": "v2"
}
Response:
{
  "subscriptionId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "redirectUrl": "https://webpay.transbank.cl/..."
}
💡 Store the subscriptionId — you need it for all future charges, authorizations, and management operations.
3
Customer authenticates on Webpay
Redirect the customer to the redirectUrl. They authenticate and authorize the card registration on Transbank's portal, then are redirected back to your callbackUrl.
4
Subscription is active — charge the card
Once the customer returns, the subscription is active. Use the standard One-Click endpoints to manage and charge it:
POST /subscriptions/v1/card/{subscriptionId} — on-demand charge
GET /subscriptions/v1/card/search/{subscriptionId} — get subscription info
PATCH /subscriptions/v1/card/{subscriptionId} — update plan
DELETE /subscriptions/v1/card/{subscriptionId} — cancel
Scheduled recurring charges are processed automatically according to periodicity and startDate.

Reserve funds before capture#

For flows where you want to reserve funds before committing to a charge on an existing subscription.
7-day capture limit
There is a maximum of 7 calendar days to capture after an authorization. After that, Transbank automatically releases the reserved funds.
1
Authorize
POST /subscriptions/v1/card/{subscriptionId}/authorize — Reserves funds on the registered card. No Webpay redirect needed — the card is already on file.
{
  "amount": {
    "subtotalIva": 0,
    "subtotalIva0": 10000,
    "iva": 0,
    "ice": 0,
    "currency": "CLP"
  },
  "name": "Catalina",
  "lastName": "Fuentes",
  "email": "user@example.com",
  "fullResponse": "v2"
}
Returns a ticketNumber.
2
Capture
POST /subscriptions/v1/card/{subscriptionId}/capture — Capture the reserved amount within 7 days.
{
  "ticketNumber": "319228478889680318",
  "amount": {
    "subtotalIva": 0,
    "subtotalIva0": 10000,
    "iva": 0,
    "ice": 0,
    "currency": "CLP"
  },
  "fullResponse": "v2"
}

Currency#

CurrencyCodeNotes
Chilean PesoCLPInteger amounts only — no decimal places
Unidad de FomentoUFIndexed currency unit

Periodicity options#

ValueDescription
dailyEvery 1 day
weeklyEvery 7 days
biweeklyEvery 15 days
monthlyEvery 30 days
threefortnightsEvery six weeks (42 days)
bimonthlyEvery 60 days
quarterlyEvery 90 days
fourmonthsEvery 120 days
halfYearlyEvery 180 days
yearlyEvery 360 days
customCustom recurring interval

Retry logic#

If a scheduled charge is rejected, Kushki retries automatically. Default: 3 retries over 3 consecutive days. Configure with retryConfiguration:
{
  "retryConfiguration": {
    "retryType": "fixed",
    "value": [5, 15, 25]
  }
}
retryTypeBehavior
scheduledRetries every N days for the entire billing period
fixedRetries only on specific days of the month

Difference from standard One-Click#

Async Card RecurringStandard One-Click
RegistrationCustomer redirected to Transbank/WebpayToken-based, no redirect
ProcessorTransbank (Webpay)Direct card network
Authorize/CaptureNo redirect — uses saved cardNo redirect — uses saved card
Chile only✅ Yes✅ Yes (via Webpay integration)

Authentication#


Using the API#

🟢 Production
🧪 Sandbox (UAT)
https://api.kushkipagos.com/

Available Endpoints#

Request Async Recurring Charge Token
Request a token to start the card registration flow. Valid for 30 minutes.
Init Async Recurring Charge
Initialize the subscription. Returns a Webpay redirect URL and a subscriptionId.
Authorize payments
Reserve funds on an already-registered card — no Webpay redirect needed.
Capture an authorized payment
Capture a previously authorized amount on the subscription.

Got a suggestion on this documentation? Contact us.
Modified at 2026-07-28 22:50:32
Previous
Get Status
Next
Request an async card recurring charge token
Built with