Created on
11-11-2025
08:04 AM
Edited on
11-24-2025
11:05 PM
By
Jean-Philippe_P
| 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
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>; |
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2025 Fortinet, Inc. All Rights Reserved.