name.com API
- Overview
- AccountInfo
- CheckAccountBalance
- Domains
- Domain Model
- Search Result Model
- ListDomains
- GetDomain
- CreateDomain
- EnableWhoisPrivacy
- DisableWhoisPrivacy
- EnableAutorenew
- DisableAutorenew
- RenewDomain
- GetPricingForDomain
- GetAuthCodeForDomain
- PurchasePrivacy
- SetNameservers
- SetContacts
- LockDomain
- UnlockDomain
- CheckAvailability
- Search
- SearchStream
- DNS
- Record Model
- ListRecords
- GetRecord
- CreateRecord
- UpdateRecord
- DeleteRecord
- DNSSECs
- Dnssec Model
- ListDNSSECs
- GetDNSSEC
- CreateDNSSEC
- DeleteDNSSEC
- EmailForwardings
- Emailforwarding Model
- ListEmailForwardings
- GetEmailForwarding
- CreateEmailForwarding
- UpdateEmailForwarding
- DeleteEmailForwarding
- Hello
- HelloFunc
- Orders
- Order Model
- ListOrders
- GetOrder
- Transfers
- Transfer Model
- ListTransfers
- GetTransfer
- CreateTransfer
- CancelTransfer
- URLForwardings
- Urlforwarding Model
- ListURLForwardings
- GetURLForwarding
- CreateURLForwarding
- UpdateURLForwarding
- DeleteURLForwarding
- VanityNameservers
- Vanitynameserver Model
- ListVanityNameservers
- GetVanityNameserver
- CreateVanityNameserver
- UpdateVanityNameserver
- DeleteVanityNameserver
- WebhookNotification
- SubscribeToNotification
- GetSubscribedNotifications
- ModifySubscription
- DeleteSubscription
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"
}