added

Update for April 2024

There have been some updates on Payments object. Please check the updates below.

Routing Conditions

We've added a new object to the Payment object response called routing_rules. It is an array of objects that represents the routing rules information during the payment creation. It returns the conditions followed by the transaction.

NameTypeDescriptionExample
routing_rulesarray of objectsReturns the routing rules information during the payment creation.
conditionstructObject with the corresponding information for the routing condition that applies to the payment
idstringID of the condition corresponding to the payment.2404911d-5df9-429e-8488-ad41abea1a4b
namestringName of the condition.PAYMENTS_COLOMBIA
descriptionstringDescription of the condition.This condition is set for payments made only in Colombia

Example

"routing_rules": {
        "condition": {
            "id": 76152,
            "name": 'PAYMENTS_COLOMBIA',
            "description": 'This condition is set for payments made only in Colombia'
        }
    }