The period between card dispatch and physical delivery is the highest-risk window for cardholder engagement. Cardholders who receive no communication during this window are less likely to activate their card promptly — and in some cases, forget the card is coming entirely. Varmo gives you the delivery intelligence to turn this dead zone into a structured activation journey, with per-phase messaging cues your application can act on immediately.Documentation Index
Fetch the complete documentation index at: https://docs.varmo.fi/llms.txt
Use this file to discover all available pages before exploring further.
The activation window
Varmo models the delivery journey in three distinct phases. Each phase has a different cardholder intent signal and a corresponding action your application should take.- Dispatched
- In transit
- Delivered
When
status is "dispatched", the card has left the fulfillment center and is in the postal network. Use ui_suggestion.recommended_message to send an anticipation push notification — cardholders who know a card is coming are significantly more likely to activate it on arrival.API response (dispatched)
send-dispatch-notification.js
Using locale for localization
Varmo infers the cardholder’s locale from their postal code and country code and returns it inui_suggestion.locale. Use this value to route your application to the correct translation strings when you compose supplementary UI copy around the recommended_message.
locale-routing.js
Varmo’s
recommended_message is already localized to the cardholder’s inferred locale — you can display it verbatim in your UI without passing it through your own translation pipeline. The locale field is provided so you can match surrounding UI elements to the same language.Best practices
- Don’t show raw ISO dates to cardholders. Use
recommended_messagedirectly, or humanizedelivery_window.min/delivery_window.maxinto a natural-language range (for example, “Saturday to Monday”) before rendering it. - Handle
recommended_action: "ContactSupport"gracefully. When Varmo returns this action, render a visible support CTA rather than a generic error. This action indicates a delivery exception that the cardholder may need to resolve with their postal service. - Don’t over-notify. Send one notification per status transition — not one per poll cycle. Track the last status value you notified on and only send a new notification when
statuschanges. - Test with real postal codes in your target regions. Varmo’s predictions are grounded in regional postal data. Use real postal codes from your target markets in staging to verify that delivery windows and locales are resolved correctly.