Download OpenAPI specification:Download
このAPIはBearer認証で保護されています。予めトークンを発行しAuthorizationヘッダーに付与してAPIを利用いたします。
Authorization: Bearer <token>
エンドポイント:https://api.value-domain.com/v1/
HTTPプロトコルのGET,POST,PUT,DELETEメソッドでレスポンスを送信します。
GET /domains
アカウントで管理しているドメインの情報一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
$apikey = 'Your APIKEY'; $url = "https://api.value-domain.com/v1"; $path = "/domains"; $method = "GET"; $postfields = array(); $post_query = json_encode($postfields); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url . $path); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); if ($method!=='GET') { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);//FIXME use http version 1.1 } curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 120); $headers = array(); $headers[] = "Content-Type: application/json"; if ($method!=='GET') { $headers[] = 'Content-Length: ' . strlen($post_query); } $headers[] = 'Authorization: Bearer ' . $apikey; curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($ch); if (curl_errno($ch)) { echo 'Connection Error: ' . curl_errno($ch) . ' - ' . curl_error($ch);exit; } $info = curl_getinfo($ch); curl_close($ch);
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999998,
- "domainname": "example.com",
- "registrar": "GMO",
- "expirationdate": "2024-04-01",
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10
}, - {
- "domainid": 9999999,
- "domainname": "example2.com",
- "registrar": "GMO",
- "expirationdate": "2024-05-01",
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10
}
], - "request_id": "20190502412345678"
}
POST /domains
ドメイン名を登録し、ネームサーバと担当者情報の割り当てを行う
ドメイン情報
registrar | string Default: "GMO" レジストラ |
sld required | string セカンドレベルドメイン |
tld required | string トップレベルドメイン |
years | integer Default: 1 登録年数 |
ns required | array ネームサーバー名 |
whois_proxy | integer Default: 0 Whois代行設定 |
contact required | object 登録者情報(アルファベット) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "registrar": "GMO",
- "sld": "string",
- "tld": "string",
- "years": 1,
- "ns": [
- "ns1.value-domain.com",
- "ns2.value-domain.com",
- "ns3.value-domain.com"
], - "whois_proxy": 1,
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "sld": "example",
- "tld": "com"
}, - "request_id": "20190502412345678"
}
GET /domains/{domain}
アカウントで管理しているドメインの情報取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "registrar": "GMO",
- "expirationdate": "2024-04-01",
- "status": "TRANSFER_LOCK",
- "transfer_lock": 0,
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10,
- "ns": [
- "ns1.value-domain.com",
- "ns2.value-domain.com",
- "ns3.value-domain.com"
], - "whoisproxy": "1",
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}, - "request_id": "20190502412345678"
}
DELETE /domains/{domain}
アカウントで管理しているドメインをアカウントから削除します。 ※ドメイン自体は有効期限まで削除されません。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com"
}, - "request_id": "20190502412345678"
}
GET /domains/transfer
アカウントのドメイン移管申請の情報を一覧取得します。
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 0,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXX",
- "status": "STAY",
- "expirationdate": "",
- "failurereason": "",
- "starttime": "2019-10-04 18:27:20"
}, - {
- "domainid": 0,
- "domainname": "example2.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXX",
- "status": "FAILED",
- "expirationdate": "",
- "failurereason": "移管コードエラーです。",
- "starttime": "2019-11-04 18:27:20"
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/transfer
ドメインのドメイン移管申請の情報を一覧取得します。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 0,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXX",
- "status": "STAY",
- "expirationdate": "",
- "failurereason": "",
- "starttime": "2019-10-04 18:27:20"
}, - {
- "domainid": 0,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXX",
- "status": "FAILED",
- "expirationdate": "",
- "failurereason": "移管コードエラーです。",
- "starttime": "2019-11-04 18:27:20"
}
], - "request_id": "20190502412345678"
}
POST /domains/{domain}/transfer
アカウントで管理していないドメインをアカウントへ移管する申請を行います。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
registrar | string Default: "GMO" レジストラ |
authcode | string 移管コード |
ns | Array of strings ネームサーバー名 |
whois_proxy | integer Whois代行設定 |
contact | object 登録者情報(アルファベット) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "registrar": "GMO",
- "authcode": "XXXXXXXXXXX",
- "ns": [
- "ns1.value-domain"
], - "whois_proxy": 1,
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXXXXXXXXX"
}, - "request_id": "20190502412345678"
}
GET /domains/{domain}/transfer/{transferorderid}
ドメイン移管申請の情報を取得します。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
transferorderid required | string 移管申請ID |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXXXXXXXXX"
}, - "request_id": "20190502412345678"
}
DELETE /domains/{domain}/transfer/{transferorderid}
ドメイン移管申請を削除します。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
transferorderid required | string 移管申請ID |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "transferorderid": "GMO-XXXXXXXXXXXXXXXXXXXXX"
}, - "request_id": "20190502412345678"
}
GET /domains/expiration
ドメイン有効期限の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 999999998,
- "domainname": "example.com",
- "expirationdate": "2024-01-01"
}, - {
- "domainid": 999999999,
- "domainname": "example2.com",
- "expirationdate": "2025-01-01"
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/expiration
ドメイン有効期限の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "expirationdate": "2024-04-01"
}, - "request_id": "20190502412345678"
}
PUT /domains/expiration
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
years | integer 延長年数 1~9 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "years": 1
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "expirationdate": "2024-04-01"
}, - "request_id": "20190502412345678"
}
GET /domains/autorenew
ドメイン自動更新の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/autorenew
ドメイン自動更新の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/autorenew
ドメイン自動更新の変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ドメイン自動更新
autorenew_all | integer 自動更新ドメイン全体設定 |
autorenew_domain | integer 自動更新ドメイン個別設定 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "autorenew_all": 1,
- "autorenew_domain": 10
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "autorenew": 1,
- "autorenew_all": 10,
- "autorenew_domain": 10
}, - "request_id": "20190502412345678"
}
ドメイン移管ロックの一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "transfer_lock": 1,
- "authcode": "abcdefg12345"
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/transferlock
ドメイン移管ロックの取得
※ domainは「登録済みドメインの一覧取得API」から取得します domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "transfer_lock": 1,
- "authcode": "abcdefg12345"
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/transferlock
ドメイン移管ロックの変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ドメイン移管ロック
transfer_lock | integer 移管ロック |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "transfer_lock": 0
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "transfer_lock": 1,
- "authcode": "abcdefg12345"
}, - "request_id": "20190502412345678"
}
GET /domains/whois
whoisの一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "whoisproxy": "1",
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/whois
whoisの取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "whoisproxy": "1",
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}, - "request_id": "20190502412345678"
}
PUT /domains/whois
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
whois_proxy | integer Whois代行設定 |
contact | object 登録者情報(アルファベット) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "whois_proxy": 1,
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "whoisproxy": "1",
- "contact": {
- "registrant": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "admin": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "tech": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}, - "billing": {
- "firstname": "Taro",
- "lastname": "Yamada",
- "organization": "personal",
- "country": "JP",
- "postalcode": "530-0011",
- "state": "Osaka",
- "city": "Osaka-shi Kita-ku",
- "address1": "3-1 Ofuka-cho nomo",
- "address2": "Grand Front Osaka Tower B 23F",
- "email": "yamada@example.com",
- "phone": "+81.612345678",
- "fax": "+81.612345678"
}
}
}, - "request_id": "20190502412345678"
}
GET /domains/nameserver
ネームサーバーの一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns": [
- "ns1.value-domain"
]
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/nameserver
ネームサーバーの取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns": [
- "ns1.value-domain"
]
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/nameserver
ネームサーバーの変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ネームサーバー情報
ns | Array of strings ネームサーバー |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "ns": [
- "ns1.value-domain.com"
]
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns": [
- "ns1.value-domain"
]
}, - "request_id": "20190502412345678"
}
GET /domains/dns
DNS設定の一覧取得
ns_type:valuedomain1 valuedomain11 のみ対応
他社ネームサーバーや gmo enom のネームサーバー使用時は valuedomain11 の内容が返却されます。
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns_type": "valuedomain1",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/dns
DNS設定の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
ns_type:valuedomain1 valuedomain11 のみ対応
他社ネームサーバーや gmo enom のネームサーバー使用時は valuedomain11 の内容が返却されます。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns_type": "valuedomain1",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/dns
DNS設定の変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
ns_type:valuedomain1 valuedomain11 のみ対応
gmo enom のネームサーバー未対応
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ns_type | string ネームサーバータイプ |
records | string DNSレコード |
ttl | integer TTL |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "ns_type": "valuedomain1",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ns_type": "valuedomain1",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}, - "request_id": "20190502412345678"
}
GET /domains/dynamicdns
ダイナミックDNS設定の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "dynamicdns": "1",
- "password": "abcdef123456",
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/dynamicdns
ダイナミックDNS設定の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "dynamicdns": "1",
- "password": "abcdef123456",
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/dynamicdns
ダイナミックDNS設定の変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
dynamicdns | integer ダイナミックDNS設定 |
password | string ダイナミックDNS設定パスワード |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "dynamicdns": "1",
- "password": "abcdef123456"
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "dynamicdns": "1",
- "password": "abcdef123456",
}, - "request_id": "20190502412345678"
}
GET /domains/dnssec
DNSSEC設定の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "ds_records": {
- "keytag": 12345,
- "alg": 13,
- "digesttype": 2,
- "digest": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/dnssec
DNSSEC設定の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ds_records": {
- "keytag": 12345,
- "alg": 13,
- "digesttype": 2,
- "digest": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/dnssec
DNSSEC設定の変更
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ds_records | Array of objects (DSRecords) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "ds_records": [
- {
- "keytag": 12345,
- "alg": 13,
- "digesttype": 2,
- "digest": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "ds_records": {
- "keytag": 12345,
- "alg": 13,
- "digesttype": 2,
- "digest": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}, - "request_id": "20190502412345678"
}
GET /domains/{domain}/privatenameserver
ドメインに登録されているプライベートネームサーバーの一覧取得
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "hostname": "example",
- "ipv4": "xxx.xxx.xxx.xxx",
- "ipv6": "2400:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx"
}
], - "request_id": "20190502412345678"
}
POST /domains/{domain}/privatenameserver
ドメイン名のプライベートネームサーバーを新規作成する。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
hostname | string ネームサーバー名 |
ipv4 | string IPアドレス(IPv4) |
ipv6 | string IPアドレス(IPv6) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "hostname": "example",
- "ipv4": "xxx.xxx.xxx.xxx",
- "ipv6": "2400:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx"
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "hostname": "example",
- "ipv4": "xxx.xxx.xxx.xxx",
- "ipv6": "2400:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx"
}, - "request_id": "20190502412345678"
}
GET /domains/{domain}/privatenameserver/{hostname}
ホスト名のプライベートネームサーバーの情報取得
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
hostname required | string プライベートネームサーバーホスト名 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "hostname": "example",
- "ipv4": "xxx.xxx.xxx.xxx",
- "ipv6": "2400:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx"
}, - "request_id": "20190502412345678"
}
DELETE /domains/{domain}/privatenameserver/{hostname}
ホスト名のプライベートネームサーバーを削除します。
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
hostname required | string プライベートネームサーバーホスト名 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "hostname": "ns1.example.com"
}, - "request_id": "20190502412345678"
}
GET /domains/localtransfer
ドメイン所有権情報の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "valuedomainuser"
}
], - "request_id": "20190502412345678"
}
GET /domains/{domain}/localtransfer
ドメイン所有権情報の取得
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "valuedomainuser"
}, - "request_id": "20190502412345678"
}
PUT /domains/{domain}/localtransfer
ドメイン所有権の変更(ユーザー間移動)
※ domainは「登録済みドメインの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメインの一覧の取得」APIから取得 |
ドメイン所有権の変更(ユーザー間移動)
username | string 変更先のユーザー名 |
message | string 変更先のユーザーへ表示するメッセージ |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "username": "tovaluedomainuser",
- "message": "Give this domain to you."
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "tovaluedomainuser",
- "message": "Give this domain to you."
}, - "request_id": "20190502412345678"
}
GET /freedns
アカウントで管理している無料ネームサーバーの情報一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999998,
- "domainname": "example.com",
- "records": "xxxxxxxx",
- "ttl": "120"
}, - {
- "domainid": 9999999,
- "domainname": "example2.com",
- "records": "xxxxxxxxxx",
- "ttl": "3600"
}
], - "request_id": "20190502412345678"
}
GET /freedns/{domain}
アカウントで管理している無料ネームサーバーの情報取得
※ domainは「登録済み無料ネームサーバーの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメイン無料ネームサーバーの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}, - "request_id": "20190502412345678"
}
POST /freedns
無料ネームサーバーの新規作成
他社管理ドメインをバリュードメインのネームサーバーで使用するための仮登録を行います。
認証方法を選択し仮登録を行った後、本登録が必要となります。
ネームサーバーの設定マニュアルはこちら
ドメイン情報
sld | string セカンドレベルドメイン |
tld | string トップレベルドメイン |
auth | string ドメイン所有者の認証方法 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "sld": "example",
- "tld": "com",
- "auth": "RFD_TXT"
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}, - "request_id": "20190502412345678"
}
PUT /freedns/{domain}
無料ネームサーバーのDNS設定の変更
※ domainは「登録済み無料ネームサーバーの一覧取得API」から取得します
domainId と domainNameのどちらでも可
ns_type:valuedomain1 のみ対応
domain required | string 「登録済みドメイン無料ネームサーバーの一覧の取得」APIから取得 |
records | string DNSレコード |
ttl | integer TTL |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "records": "a * 133.130.104.122\nmx @ 10\ntxt @ v=spf1 ip4:133.130.104.111 ~all",
- "ttl": "1200"
}, - "request_id": "20190502412345678"
}
DELETE /freedns/{domain}
アカウントで管理している無料ネームサーバーをアカウントから削除します。
domain required | string 「登録済みドメイン無料ネームサーバーの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com"
}, - "request_id": "20190502412345678"
}
GET /freedns/localtransfer
ドメイン無料ネームサーバーの所有権情報の一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "valuedomainuser"
}
], - "request_id": "20190502412345678"
}
GET /freedns/{domain}/localtransfer
ドメイン無料ネームサーバーの所有権情報の取得
※ domainは「登録済みドメイン無料ネームサーバーの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメイン無料ネームサーバーの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "valuedomainuser"
}, - "request_id": "20190502412345678"
}
PUT /freedns/{domain}/localtransfer
ドメイン無料ネームサーバーの所有権の変更(ユーザー間移動)
※ domainは「登録済みドメイン無料ネームサーバーの一覧取得API」から取得します
domainId と domainNameのどちらでも可
domain required | string 「登録済みドメイン無料ネームサーバーの一覧の取得」APIから取得 |
ドメイン無料ネームサーバー所有権の変更(ユーザー間移動)
username | string 変更先のユーザー名 |
message | string 変更先のユーザーへ表示するメッセージ |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "username": "tovaluedomainuser",
- "message": "Give this domain to you."
}
{- "results": {
- "domainid": 9999999,
- "domainname": "example.com",
- "username": "tovaluedomainuser",
- "message": "Give this domain to you."
}, - "request_id": "20190502412345678"
}
GET /domainsearch
ドメイン空き状況検索
domainnames required | string ドメイン名(カンマ区切りで複数入力可能) |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": [
- {
- "domainname": "example.com",
- "sld": "string",
- "tld": "string",
- "status": "211 Domain name not available"
}
], - "request_id": "20190502412345678"
}
GET /logs
APIログの一覧取得
limit | integer 取得件数 |
page | integer ページ番号 |
order | string 並び順 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "paging": {
- "max": 0,
- "limit": 0,
- "page": 0
}, - "results": [
- {
- "request_id": "2019xxxxxxxxxxxxxxxxxxxxxxxV",
- "datetime": "2019-10-31 16:56:06",
- "method": "POST",
- "path": "/v1/freedns",
- "request": "",
- "response": "",
- "addr": "xxx.xxx.xxx.xxx"
}
], - "request_id": "20190502412345678"
}
GET /logs/{request_id}
APIログの取得
request_id required | string 「APIログの一覧の取得」APIから取得 |
Success
Bad Request
Unauthorized
Forbidden
Not found
Internal Server Error
Service Unavailable
Gateway Time-out
API本番用
{- "results": {
- "request_id": "2019xxxxxxxxxxxxxxxxxxxxxxxV",
- "datetime": "2019-10-31 16:56:06",
- "method": "POST",
- "path": "/v1/freedns",
- "request": "",
- "response": "",
- "addr": "xxx.xxx.xxx.xxx"
}, - "request_id": "20190502412345678"
}