#Can we change the payment transactions timezone?
1 messages · Page 1 of 1 (latest)
- Dodo Payments returns all timestamps in UTC by default
- This cannot be changed via API or dashboard settings
What to do instead:
- Convert UTC → local timezone on your frontend or backend
- Use standard libraries (e.g.
Intl.DateTimeFormat,moment,dayjs, etc.)
Example (JS):
new Date(timestamp).toLocaleString()
Please refer to the bot answer.