This guide demonstrates how to implement payments using our API through two different approaches: step-by-step with payment attempts and direct payments.
Step-by-Step Flow
This approach gives you more control over the payment process by breaking it down into manageable steps.
1. Create a Payment Attempt
First, initiate a payment attempt by specifying at least the destination amount or origin amount, as well as the product and identityId:
{
"externalId": "63d93f9b-35c8-470b-84fd-43a7282a62b0", // your transaction ID
"externalIdentityId": "f0d16558-3a8f-4d74-9099-67cc46e01d97", // your identity or user UD
"identityId": "ea5423d5-b4fe-4380-a33b-af2863d2c125", // identity ID, which is provided upon identity creation
"originAmount": {
"amount": "50000",
"currency": "CLP"
},
"product": "CLP:MXN"
}
The create payment attempt endpoint should return the transaction model.