[POST] .../v1/currenttimestamp/get
Returns the server time. Use this method when a client needs the API database server's current Unix timestamp for synchronization, cache timestamps or comparing client and server time. The method does not require object-level permission, but normal API access rules still apply; it reads CURRENT_TIMESTAMP from the database and returns Unix time in seconds. Database connection errors, empty database responses and unexpected result shape are returned as HTTP 200 ErrorResult business errors.
Request Parameters
No request body.
Request Example
{}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | Int64 | Result object. |
Response Example
{
"ok": true,
"result": 1712345600
}