MENU

Description
ドメインの一覧を表示する

Request URL

Designate API v1.0

GET /v1/domains

Request Paramters

Parameter Value Style Type Description
X-Auth-Token - header string Userトークン
name(Optional) Default:None query string ドメイン名

Response Paramters

Parameter Value Style Type Description
domains - - list -
id - plain string ドメインID
name - plain string ドメイン名
created_at - plain string 作成日
updated_at - plain string 更新日
email - plain string Eメールアドレス
ttl - plain int TTL (秒)
serial - plain int シリアル番号
description - plain string 備考
gslb [0:OFF/1:ON] plain string GSLB機能の有効/無効

Request Json



Normal response codes

200 - OK

Error response codes

400 – Invalid Object
401 – Access Denied

Example
※エンドポイントURLにつきましては、お客様環境によって異なりますので、コントロールパネルにてご確認の上ご利用ください。

  • REQ
curl --include https://dns-service.tyo1.conoha.io/v1/domains \
-X GET \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140"
  • RES
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json

{
    "domains":[
      {
        "id": "09494b72-b65b-4297-9efb-187f65a0553e",
        "name": "domain1.com.",
        "ttl": 3600,
        "serial": 1351800668,
        "email": "[email protected]",
        "gslb": 0,
        "created_at": "2012-11-01T20:11:08.000000",
        "updated_at": null,
        "description": "memo"
      },
      {
        "id": "cf661142-e577-40b5-b3eb-75795cdc0cd7",
        "name": "domain2.com.",
        "ttl": 7200,
        "serial": 1351800670,
        "email": "[email protected]",
        "gslb": 1,
        "created_at": "2012-11-01T20:11:08.000000",
        "updated_at": "2012-12-01T20:11:08.000000",
        "description": "memomemo"
      }
    ]
}