Technical Tip: Viewing FortiSIEM user list with creation date and last modified date
| Description | This article describes how to view the FortiSIEM user list with the creation date and, last modified date. The article provides a step-by-step guide on how to retrieve this information from the FortiSIEM backend. |
| Scope | FortiSIEM. |
| Solution | To view the FortiSIEM user list with creation date and last modified date by following the steps below:
SSH to the supervisor backend as root.
psql -U phoenix phoenixdb
select * from ph_user;
Replace it with the actual organization ID.
Example output:
After obtaining the results, proceed to paste the values into epoch timestamp Epoch Converter to convert to a human date.
An example using the value of 1750754598316:
GMT: Tuesday, June 24, 2025 8:43:18.316 AM
Additional information:
Note: It is possible to obtain the date on human value by directly converting on the command on the way:
select to_char(to_timestamp(creation_time / 1000), 'DD/MM/YYYY HH24:MI:SS') as creation_time, to_char(to_timestamp(last_modified_time / 1000), 'DD/MM/YYYY HH24:MI:SS') as last_modified_time from ph_user where cust_org_id=<ORG_ID>; |

