GET
/
configurations
/
time
/
get
Get system time
curl --request GET \
  --url https://localhost:5000/configurations/time/get \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "get System time successfully",
  "data": {
    "time": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

System time retrieved

success
boolean
Example:

true

message
string
Example:

"get System time successfully"

data
object