HelloFunc
HelloFunc returns some information about the API server.
Endpoint: GET /v4/hello
Parameters:
Response:
serverName
string
ServerName is an identfier for which server is being accessed.
motd
string
Motd is a message of the day. It might provide some useful information.
username
string
Username is the account name you are currently logged into.
serverTime
string
ServerTime is the current date/time at the server.
Example:
curl -u 'username:token' 'https://api.dev.name.com/v4/hello'
{
"serverName": "api01",
"motd": "Welcome to the Name.com API-v4 server",
"username": "username",
"serverTime": "2017-11-13T22:58:35Z"
}