关于Dynadot
Dynadot是通过ICANN认证的域名注册商,自2002年成立以来,服务于全球108个国家和地区的客户,为数以万计的客户提供简洁,优惠,安全的域名注册以及管理服务。
Dynadot平台操作教程索引(包括域名邮箱,解析,建站,优惠长期更新)
Dynadot.com提供的API是专为效率而构建的高级域名管理和获取工具包。在Dynadot平台上,我们提供了50多个命令来设置,管理,注册和竞标域名。
在了具体的功能API代码前,请阅读关于Dynadot的API使用须知。
在用户想要全面了解自己的用户信息时,使用Dynadot API可以详尽地查询自己的账户信息。
相关参数
当需要查询自己账户的信息时,只需要在输入命令之后并不需要额外的参数。
在成功发送信息查询命令之后,返回的结果将以XML或是JSON格式的标签返回,其中XML的结果标签所代表含义由下图所示:
XML结果标签 | 解释 |
<AccountInfoResponse></AccountInfoResponse> | 响应XML文档的根节点 |
<AccountInfoHeader></AccountInfoHeader> | 响应标头 |
<SuccessCode></SuccessCode> | 如果操作成功,"0"为成功,"-1"为失败 |
<Status></Status> | 请求状态 |
<Error></Error> | 请求错误信息,仅状态为"error"时使用 |
<AccountInfoContent></AccountInfoContent> | 响应内容 |
<AccountInfo></AccountInfo> | 账户信息 |
<Username></Username> | 用户名 |
<ForumName></ForumName> | 论坛名称 |
<Contact></Contact> | 联系方式信息 |
<Organization></Organization> | 整理与归纳 |
<Organization></Organization> | 响应标头 |
<Name></Name> | 您的名称 |
<Email></Email> | 邮箱 |
<PhoneCc></PhoneCc> | 国家区号 |
<PhoneNum></PhoneNum> | 电话号码 |
<Address1></Address1> | 第1行地址 |
<Address2></Address2> | 第2行地址 |
<City></City> | 城市 |
<State></State> | 州 |
<ZipCode></ZipCode> | 邮政区代码 |
<Country></Country> | 国家 |
<CustomerSince></CustomerSince> | 客户身份始于 |
<AccountLock></AccountLock> | 账户锁定 |
<TotalSpending></TotalSpending> | 花费总计 |
<PriceLevel></PriceLevel> | 价格级别 |
<AccountBalance></AccountBalance> | 账户余额 |
<CustomTimeZone></CustomTimeZone> | 自定义时区 |
<DefaultSettings></DefaultSettings> | 默认设置 |
<DefaultWhois></DefaultWhois> | 默认Whois |
<DefaultRegistrant></DefaultRegistrant> | 默认注册人 |
<ContactId></ContactId> | 联络人ID |
<DefaultAdmin></DefaultAdmin> | 默认管理员 |
<DefaultTechnical></DefaultTechnical> | 默认技术类型 |
<DefaultBilling></DefaultBilling> | 默认账单 |
<Type></Type> | 域名服务器类型 |
<WithAds></WithAds> | 是否带有广告 |
示例:
此处,使用API发送账户信息查询命令account_info。
将高级域API请求发送到以下URL:https://api.dynadot.com/api3.xml。
则最后返回的参数为:
请求(XML格式)
https://api.dynadot.com/api3.xml?key=mykey&command=account_info
响应(XML格式)
<?xml version="1.0" encoding="UTF-8"?><AccountInfoResponse><AccountInfoHeader><ResponseCode>0</ResponseCode><Status>success</Status></AccountInfoHeader><AccountInfoContent><AccountInfo><Username>testname</Username><ForumName>test forum name</ForumName><Contact><Organization/><Name>testname test</Name><Email>test@test.com</Email><PhoneCc>1</PhoneCc><PhoneNum>555.555.5233</PhoneNum><FaxCc/><FaxNum/><Address1>1 test road</Address1><Address2/><City>Los Angeles</City><State>CA</State><ZipCode>90000</ZipCode><Country>US</Country></Contact><CustomerSince>1364888735253</CustomerSince><AccountLock>on</AccountLock><TotalSpending>$0.00</TotalSpending><PriceLevel>Regular Pricing</PriceLevel><AccountBalance>$70.02</AccountBalance><CustomTimeZone>PST</CustomTimeZone><DefaultSettings><DefaultWhois><DefaultRegistrant><ContactId>0</ContactId></DefaultRegistrant><DefaultAdmin><ContactId>0</ContactId></DefaultAdmin><DefaultTechnical><ContactId>0</ContactId></DefaultTechnical><DefaultBilling><ContactId>0</ContactId></DefaultBilling></DefaultWhois><DefaultNameServerSettings><Type>Dynadot Parking</Type><WithAds>yes</WithAds></DefaultNameServerSettings></DefaultSettings></AccountInfo></AccountInfoContent></AccountInfoResponse>
请求(JSON格式)
https://api.dynadot.com/api3.json?key=mykey&command=account_info
响应(JSON格式)
{"AccountInfoResponse": {"ResponseCode": 0,"Status": "success","AccountInfo": {"Username": "testname","ForumName": "test forum name","Contact": {"Organization": "","Name": "testname test","Email": "test@test.com","PhoneCc": "1","PhoneNum": "555.555.5233","FaxCc": "","FaxNum": "","Address1": "1 test road","Address2": "","City": "Los Angeles","State": "CA","ZipCode": "90000","Country": "US"},"CustomerSince": "1364888735253","AccountLock": "on","TotalSpending": "$0.00","PriceLevel": "Regular Pricing","AccountBalance": "$70.02","CustomTimeZone": "PST","DefaultSettings": {"DefaultWhois": {"DefaultRegistrant": {"ContactId": "0"},"DefaultAdmin": {"ContactId": "0"},"DefaultTechnical": {"ContactId": "0"},"DefaultBilling": {"ContactId": "0"}},"DefaultNameServerSettings": {"Type": "Dynadot Parking","WithAds": "yes"}}}}}
在网页中,其显示样式如下:(示例为实际操作。)
XML格式
JSON格式