Date and time

In our API, we utilize the Coordinated Universal Time (UTC) system for all date and time-related operations. Therefore, it is crucial to ensure that you provide the accurate UTC date and time values when interacting with those API.

Certain endpoints within the API may require you to input specific dates and times, such as available_at,discontinue_at etc. It is important to pay close attention to these requirements and provide the appropriate UTC date and time values for seamless integration with the API.

By adhering to the correct UTC date and time format throughout your interactions with the API, you will ensure accurate and consistent data processing. This adherence to UTC helps avoid any discrepancies that may arise from differing time zones or daylight saving time adjustments.

Example

{
    ....
    "available_at" : "2023-05-25T10:50:23+00:00"
    ....
}

Format must be like: YYYY-MM-DDTHH:ii:ss+00:00

The time offset must be +00:00 because it is UTC. Please do not put your local time difference in the time offset such as 01:00, 02:00 etc.