Creating a Payment
To create a payment, you’ll need to make a POST request to our simple payment endpoint with the required information. Here’s how to structure your request:
Flow Chart
You can check the Auth endpoint documentation here for full details on how to authorize and get a token.
Request Structure
Required Fields
Basic Information
type
: The type of order (“CHARGE” or “PAYMENT”)payoutMethodType
: The method for either payout or payin (“CARD” or “TRANSFER”)dueDate
: The expiration date and time for the paymentdescription
: Description of the orderreference
: Reference for the orderamount
: Total amount of the order
Currency Information
orderCurrency
: ISO code of the order’s currency (ARS, CLP, COP, MXN, USD, PEN, BRL)fixedOrderCurrency
: ISO code of the currency in which the order is fixedcollectionCurrency
: ISO code of the currency for collectionpayoutCurrency
: ISO code of the payment currency for the payout
Bank Account
destinationBankAccountId
: ID of the bank account where the collected amount will be deposited
Products
At least one product is required with the following information:
id
: Product identifiername
: Product namequantity
: Amount of productsprice
: Price information including:id
: Price identifiervalue
: Price valuename
: Price nameexternalId
: External reference ID
unit
: Unit of measurementdescription
: Product descriptionexternalId
: External reference IDimage
: Product image URL
Customer Information
Customer information is required with:
- Personal details (name, email, phone)
- Address information
- Document details (tax ID, document type/number)
- Bank account information
Payment Configuration
paymentProviderIds
: Array of payment provider IDspaymentProviderMethods
: Array of payment methodssuccessUrl
: URL to redirect after successful payment
Available Payment Methods
// TODO: Add endpoint to get available payment methods per country
The following payment methods are supported:
- PSE (Pagos Seguros en Línea)
- BANCOLOMBIA_QR
- BANCOLOMBIA_TRANSFER
- PCOL
- BANCOLOMBIA_BNPL
- DAVIPLATA
- SU_PLUS
- NEQUI
Response
Upon successful creation, the endpoint will return a response with the payment details that can be used to process the payment through the selected payment provider.
Example Usage
Error Handling
The API will return appropriate error responses with details about what went wrong. Common error scenarios include:
- Invalid payment provider IDs
- Missing required fields
- Invalid currency codes
- Invalid bank account information
- Invalid customer information
Make sure to handle these errors appropriately in your implementation.
You can also check the full endpoint documentation for simple payments