Skip to main content

REST API Settings - Get server info

Get server info

Written by Albert
Updated over 2 weeks ago

Get server info

GET /frontoffice/api/v3/info

Summary

Use this method to retrieve current server time and timezone information.

Request

No request parameters.

Request example

GET /frontoffice/api/v3/info HTTP/1.1
Host: {host}
Authorization: Bearer JWT
Accept: */*

Response

In case of success, an object will be returned.

Each object contains the following information:

serverTime string

The server time, in the Unix timestamp format.

serverTimeZone string

The server time zone.

Response example β€” 200: OK

{
"serverTime": "1755190380",
"serverTimeZone": "+00:00"
}

Did this answer your question?