Paymo API uses dates in ISO 8601 format.
Examples:
2015-01-17
for representing a date (without time)2015-01-17T18:23:02Z
for representing a date combined with time in UTC2015-01-17T10:23:02-08:00
for representing a date combined with time in another timezone
For responses by Paymo API containing datetime values, the values will be in UTC.
IMPORTANT: When sending requests with a filter on a date time value for parameters that use dates or times you should use the numeric unix timestamp value for the date field (converting to UNIX timestamp would be handled by the programming language you are using):
Example: To get all items created after 2020-03-11T19:20:41Z
- ?where=created_on>=1583954441