Working with customer timezones
When creating subscriptions for customers in specific timezones, you’ll need to convert the desired local time to UTC before sending it to the API.Examples
Let’s say you want to create a subscription that starts at midnight (00:00) in Paris timezone (Europe/Paris):Z suffix in the date string indicates that the timestamp is in UTC.
Best practices
- Always use ISO 8601 format for dates
- Include the UTC indicator (
Z) in your timestamps - Consider daylight saving time when converting from local timezones
- Use a reliable date library (like
date-fnsorluxon) to handle timezone conversions

