Updates for May, 2025
There have been some updates on Yuno. Please check the updates below.
- Network Token Enrollment
- Subscription billing date
- Expiration date
Network Token Enrollment
We are introducing an update to optimize how network tokens are generated in Yuno.
When the network tokens feature is enabled, Yuno will continue to generate network tokens for all cards enrolled and securely stored in our Vault. This approach is fully aligned with how network tokenization is intended to work, as defined by Visa and Mastercard after the card validation — ensuring better performance, security, and reliability in recurring and future transactions.
Cards not stored in Yuno — such as one-time use cards — are naturally excluded from this process, since network tokenization is not applicable in those cases.
For more information on how Network Tokens work, please refer to the Network tokens documentation in the guides section.
Subscription billing date
We've added a new capability to the Subscription feature called Billing date. By specifying the billing_date
object, the merchant can define the logic behind the exact date for the billing of the subscription. Mutually exclusive with the frequency object.
Field | Type | Description |
---|---|---|
billing_date | struct | The billing date struct |
type | number | The type of billing_date the subscription will have in time. PREPAID, POSTDATE, DAY. If not set, the creation date for the plan will be set by default. |
day | number | The day of the month to charge the subscription if the type is set to DAY. Always 1 by default. |
For more information, please refer to the subscriptions documentation in the guides section.
Expiration date
We've added a new capability to the Payments API, which allows you to view and specify the expiration date of an asynchronous payment method for the payment.
[...],
"payment_method": {
"vaulted_token": "",
"type": "NU_PAY",
"vault_on_success": false,
"token": "",
"parent_payment_method_type": null,
"payment_method_detail": {
"wallet": {
[...]
"expirates_at": "2025-05-14T15:06:48.383418Z"
}
}
Only available when the provider associated to the payment supports it. Please feel free to reach out to your technical account manager for further questions.
Please refer to the payments API reference for more information.