Description
Show domain details.
Request URL
Designate API v1.0 GET /v1/domains/(uuid: id)
Request Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| X-Auth-Token | - | header | string | User Token |
| domain_id | - | URI | UUID | Domain ID |
Response Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| created_at | - | plain | string | Creation Date |
| updated_at | - | plain | string | Update Date |
| name | - | plain | string | Domain Name |
| id | - | plain | UUID | Domain ID |
| ttl | - | plain | int | TTL(second) |
| serial | - | plain | int | Serial Number |
| - | plain | string | Email Address | |
| description | - | plain | string | Description |
| gslb | [0:OFF/1:ON] | plain | string | Enable/Disable GSLB |
Request Json
Normal response codes
200 - OK
Error response codes
401 – Access Denied
Example
curl --include https://dns-service.tyo1.cloud.z.com/v1/domains/09494b72-b65b-4297-9efb-187f65a0553e -X GET -H "Accept: application/json" -H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140"
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json
{
"id": "09494b72-b65b-4297-9efb-187f65a0553e",
"name": "domain1.com.",
"ttl": 3600,
"serial": 1351800668,
"email": "nsadmin@example.org",
"gslb": 0,
"created_at": "2012-11-01T20:11:08.000000",
"updated_at": null,
"description": "memo"
}