Date and Time Format
This section defines the date and time formats required by the Koncili API.
Formatting Standard
Date
YYYY-MM-DD
- YYYY: 4-digit year
- MM: Month (01-12)
- DD: Dia Day (01-31)
### Example in a request:
```json
{
//...
"createdDate": "2024-02-06"
//...
}
Date and Time (Timestamp)
YYYY-MM-DDTHH:mm:ssZ
- YYYY: 4-digit year
- MM: Month (01-12)
- DD: Day (01-31)
- T: Time delimiter
- HH: Hour (00-23)
- mm: Minutes (00-59)
- ss: Seconds (00-59)
- Z: UTC offset indicator
Request Example::
{
//...
"createdDate": "2024-02-06T01:00:00Z",
"approvedDate": "2024-02-07T02:00:00Z",
"sendDate": "2024-02-08T03:00:00Z",
"estimatedDeliveryDate": "2024-02-15T12:00:00Z",
"deliveryDate": "2024-02-16T12:00:00Z"
//...
}
Internal Processing
Automatic conversion: All values will be converted to GMT-3 (America/São_Paulo) during processing, but they must be submitted exclusively in UTC format.