added
Updates for April, 2024
8 months ago by Nico Mana
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.
Name | Type | Description | Example |
---|---|---|---|
routing_rules | array of objects | Returns the routing rules information during the payment creation. | |
condition | struct | Object with the corresponding information for the routing condition that applies to the payment | |
id | string | ID of the condition corresponding to the payment. | 2404911d-5df9-429e-8488-ad41abea1a4b |
name | string | Name of the condition. | PAYMENTS_COLOMBIA |
description | string | Description 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'
}
}