System time
Use the following endpoint to get the current time on the server hosting your
application:
- GET
/systemtools/v1/system-time
There may be times when you're using an InsuranceSuite application in one location, but the server hosting the application is located elsewhere, configured in a different time zone. This endpoint is useful when you need to determine the time zone and current time on the server hosting your application.
Command
GET /systemtools/v1/system-time
Response
{
"data": {
"attributes": {
"dateTime": "2025-09-16T17:19:26.385Z",
"zoneId": "UTC",
"zoneOffset": "Z"
}
}
}
The example response returns the following details:
- The current time on the server: 2025-09-16T17:19:26.385Z
- The configured time zone on the server: UTC (Coordinated Universal Time)
- The time zone difference from UTC: Z (+0:00 different from UTC)