added

Updates for Mach, 2025

You can take a look at the latest Yuno updates. There have been some updates on Yuno. Please check the updates below.

  • Discounts
  • Monitors Flag

Discounts

We've added a new capability to the Payments API, which allows you to specify the information of the discounts related to the purchase.

[...],
"additional_data": {
        "order": {
            "fee_amount": 40.5,
             "discounts": [
                {
                    "id": "XYZ",
                    "name": "Offer",
                    "unit_amount": "100"
                }
            ],
[...]

Please refer to the payments API reference and the Payment amount details section for more information.

Monitors flag

We've added a new field to the Payment object response called monitors. It's a field inside the routing rules object specifying whether a transaction went through the monitors feature.

[...], 
"routing_rules": {
        "smart_routing": false,
        "monitors":true,
        "condition": {
            "id": 133892,
            "name": null,
            "description": null
        }
    },
[...]

For more information, please refer to the payments API reference section.