This article serves as a reference guide to the date and time formats supported by Identum's eADM . It includes a comprehensive table with format strings, examples, and descriptions for use in CSV data imports, exports, and when defining criteria in rulesets. The document helps administrators ensure correct date parsing and prevent errors during system integration and automation tasks.
The eADM is designed to parse several different date and time formats. This flexibility allows administrators to work with various data sources, especially when handling CSV files for user import/export or when defining criteria in rulesets.
When you provide a date or time value in a source file or in a ruleset, eADM to parse it using the formats listed below. The system processes them in a specific order, so it is important to ensure your data is consistent and matches one of the supported formats to avoid errors.
Note: Date and time parsing in eADM culture-invariant. This means it uses a standardized format that is not affected by regional settings (e.g., dd.MM.yyyy is always day-month-year, regardless of the server's or user's local settings).
Note 2: When working with dates in objects using the API, dd/MM/yyyy HH:mm:ss is the primary format.
Supported formats
The following table lists all supported date and time format strings, along with an example and a description for each.
|
Format String |
Example |
Description |
|
|
|
Day, month, year with a 24-hour timestamp including seconds. This is the primary format when working with objects in the APIs |
|
|
|
ISO-style date with a 24-hour timestamp that includes seconds. |
|
|
|
US-style date format with a 12-hour time format and AM/PM indicator. |
|
|
|
US-style date (single-digit day) with a 12-hour time format and AM/PM indicator. |
|
|
|
ISO 8601 standard date format (date only). |
|
|
|
Day, month, year (date only). |
|
|
|
Day, month, and year with a 24-hour time format (without seconds). |
|
|
|
Day, month, and year with a 12-hour time format. |
|
|
|
Day, month, and year with a 24-hour time format. |
|
|
|
Day, month, year with a 24-hour time format (dot separator for the hour). |
|
|
|
Basic ISO date format without separators. |
|
|
|
ISO 8601 combined date and time format using a "T" separator. |
Understanding the format specifiers
The format strings in the table above use the following standard specifiers.
-
yyyy: The year as a four-digit number. -
MM: The month, starting from01through12. -
M: The month, starting from1through12. -
dd: The day of the month, from01through31. -
d: The day of the month, from1through31. -
HH: The time, using a 24-hour clock from00two23. -
hh: The time, using a 12-hour clock from01two12. -
mm: The minute, from00two59. -
ss: The second, from00two59. -
tt: The AM/PM designator. -
T: The literal character 'T', used as a separator in the ISO 8601 standard.