dnsimple 2.2.0 → 3.0.0.pre.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (244) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +3 -1
  4. data/CHANGELOG.md +13 -2
  5. data/CONTRIBUTING.md +35 -0
  6. data/Gemfile +2 -0
  7. data/LICENSE.txt +1 -1
  8. data/README.md +30 -82
  9. data/dnsimple.gemspec +2 -1
  10. data/lib/dnsimple.rb +0 -2
  11. data/lib/dnsimple/client.rb +64 -64
  12. data/lib/dnsimple/client/clients.rb +82 -58
  13. data/lib/dnsimple/client/contacts.rb +74 -37
  14. data/lib/dnsimple/client/domains.rb +82 -28
  15. data/lib/dnsimple/client/domains_email_forwards.rb +107 -0
  16. data/lib/dnsimple/client/identity.rb +38 -0
  17. data/lib/dnsimple/client/oauth.rb +42 -0
  18. data/lib/dnsimple/client/registrar.rb +64 -72
  19. data/lib/dnsimple/client/registrar_auto_renewal.rb +41 -0
  20. data/lib/dnsimple/client/registrar_whois_privacy.rb +74 -0
  21. data/lib/dnsimple/client/tlds.rb +88 -0
  22. data/lib/dnsimple/client/webhooks.rb +82 -0
  23. data/lib/dnsimple/client/zones.rb +68 -0
  24. data/lib/dnsimple/client/zones_records.rb +127 -0
  25. data/lib/dnsimple/default.rb +10 -17
  26. data/lib/dnsimple/error.rb +5 -8
  27. data/lib/dnsimple/extra.rb +1 -1
  28. data/lib/dnsimple/response.rb +80 -0
  29. data/lib/dnsimple/struct.rb +13 -14
  30. data/lib/dnsimple/struct/account.rb +13 -0
  31. data/lib/dnsimple/struct/contact.rb +6 -3
  32. data/lib/dnsimple/struct/domain.rb +10 -10
  33. data/lib/dnsimple/struct/domain_check.rb +16 -0
  34. data/lib/dnsimple/struct/email_forward.rb +11 -1
  35. data/lib/dnsimple/struct/oauth_token.rb +19 -0
  36. data/lib/dnsimple/struct/record.rb +25 -7
  37. data/lib/dnsimple/struct/tld.rb +22 -0
  38. data/lib/dnsimple/struct/user.rb +3 -7
  39. data/lib/dnsimple/struct/webhook.rb +13 -0
  40. data/lib/dnsimple/struct/whois_privacy.rb +8 -5
  41. data/lib/dnsimple/struct/zone.rb +25 -0
  42. data/lib/dnsimple/version.rb +1 -1
  43. data/spec/dnsimple/client/client_service_spec.rb +37 -0
  44. data/spec/dnsimple/client/contacts_spec.rb +108 -78
  45. data/spec/dnsimple/client/domains_email_forwards_spec.rb +190 -0
  46. data/spec/dnsimple/client/domains_spec.rb +121 -58
  47. data/spec/dnsimple/client/identity_spec.rb +56 -0
  48. data/spec/dnsimple/client/oauth_spec.rb +48 -0
  49. data/spec/dnsimple/client/registrar_auto_renewal_spec.rb +80 -0
  50. data/spec/dnsimple/client/registrar_spec.rb +109 -122
  51. data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +119 -0
  52. data/spec/dnsimple/client/tlds_spec.rb +139 -0
  53. data/spec/dnsimple/client/webhooks_spec.rb +142 -0
  54. data/spec/dnsimple/client/zones_records_spec.rb +277 -0
  55. data/spec/dnsimple/client/zones_spec.rb +109 -0
  56. data/spec/dnsimple/client_spec.rb +34 -46
  57. data/spec/dnsimple/extra_spec.rb +22 -0
  58. data/spec/{files → fixtures.http}/badgateway.http +14 -14
  59. data/spec/fixtures.http/checkDomain/success.http +17 -0
  60. data/spec/fixtures.http/createContact/created.http +17 -0
  61. data/spec/fixtures.http/createDomain/created.http +16 -0
  62. data/spec/fixtures.http/createEmailForward/created.http +17 -0
  63. data/spec/fixtures.http/createWebhook/created.http +17 -0
  64. data/spec/fixtures.http/createZoneRecord/created.http +17 -0
  65. data/spec/fixtures.http/deleteContact/success.http +13 -0
  66. data/spec/fixtures.http/deleteDomain/success.http +13 -0
  67. data/spec/fixtures.http/deleteEmailForward/success.http +12 -0
  68. data/spec/fixtures.http/deleteWebhook/success.http +13 -0
  69. data/spec/fixtures.http/deleteZoneRecord/success.http +13 -0
  70. data/spec/fixtures.http/disableAutoRenewal/success.http +12 -0
  71. data/spec/fixtures.http/disableWhoisPrivacy/success.http +17 -0
  72. data/spec/fixtures.http/enableAutoRenewal/success.http +12 -0
  73. data/spec/fixtures.http/enableWhoisPrivacy/created.http +17 -0
  74. data/spec/fixtures.http/enableWhoisPrivacy/success.http +17 -0
  75. data/spec/fixtures.http/getContact/success.http +17 -0
  76. data/spec/fixtures.http/getDomain/success.http +16 -0
  77. data/spec/fixtures.http/getEmailForward/success.http +17 -0
  78. data/spec/fixtures.http/getTld/success.http +17 -0
  79. data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +17 -0
  80. data/spec/fixtures.http/getTldExtendedAttributes/success.http +17 -0
  81. data/spec/fixtures.http/getWebhook/success.http +17 -0
  82. data/spec/fixtures.http/getWhoisPrivacy/success.http +17 -0
  83. data/spec/fixtures.http/getZone/success.http +17 -0
  84. data/spec/fixtures.http/getZoneRecord/success.http +17 -0
  85. data/spec/fixtures.http/listContacts/success.http +17 -0
  86. data/spec/fixtures.http/listDomains/success.http +16 -0
  87. data/spec/fixtures.http/listEmailForwards/success.http +17 -0
  88. data/spec/fixtures.http/listTlds/success.http +17 -0
  89. data/spec/fixtures.http/listWebhooks/success.http +17 -0
  90. data/spec/fixtures.http/listZoneRecords/success.http +17 -0
  91. data/spec/fixtures.http/listZones/success.http +17 -0
  92. data/spec/fixtures.http/notfound-contact.http +12 -0
  93. data/spec/fixtures.http/notfound-domain.http +12 -0
  94. data/spec/fixtures.http/notfound-emailforward.http +12 -0
  95. data/spec/fixtures.http/notfound-record.http +12 -0
  96. data/spec/fixtures.http/notfound-webhook.http +12 -0
  97. data/spec/fixtures.http/notfound-zone.http +12 -0
  98. data/spec/fixtures.http/oauthAccessToken/success.http +17 -0
  99. data/spec/fixtures.http/pages-1of3.http +16 -0
  100. data/spec/fixtures.http/pages-2of3.http +16 -0
  101. data/spec/fixtures.http/pages-3of3.http +16 -0
  102. data/spec/fixtures.http/registerDomain/success.http +17 -0
  103. data/spec/fixtures.http/renewDomain/error-tooearly.http +15 -0
  104. data/spec/fixtures.http/renewDomain/success.http +17 -0
  105. data/spec/fixtures.http/resetDomainToken/success.http +17 -0
  106. data/spec/fixtures.http/response.http +16 -0
  107. data/spec/fixtures.http/transferDomain/error-indnsimple.http +15 -0
  108. data/spec/fixtures.http/transferDomain/error-missing-authcode.http +15 -0
  109. data/spec/fixtures.http/transferDomain/success.http +17 -0
  110. data/spec/fixtures.http/transferDomainOut/success.http +13 -0
  111. data/spec/fixtures.http/updateContact/success.http +17 -0
  112. data/spec/fixtures.http/updateZoneRecord/success.http +17 -0
  113. data/spec/fixtures.http/whoami/success.http +16 -0
  114. data/spec/fixtures.http/whoami/success_account.http +16 -0
  115. data/spec/fixtures.http/whoami/success_user.http +16 -0
  116. data/spec/spec_helper.rb +0 -6
  117. data/spec/support/helpers.rb +4 -4
  118. metadata +161 -238
  119. data/lib/dnsimple/client/certificates.rb +0 -100
  120. data/lib/dnsimple/client/domains_autorenewal.rb +0 -35
  121. data/lib/dnsimple/client/domains_forwards.rb +0 -71
  122. data/lib/dnsimple/client/domains_privacy.rb +0 -35
  123. data/lib/dnsimple/client/domains_records.rb +0 -90
  124. data/lib/dnsimple/client/domains_sharing.rb +0 -54
  125. data/lib/dnsimple/client/domains_zones.rb +0 -22
  126. data/lib/dnsimple/client/name_servers.rb +0 -71
  127. data/lib/dnsimple/client/services.rb +0 -37
  128. data/lib/dnsimple/client/services_domains.rb +0 -68
  129. data/lib/dnsimple/client/templates.rb +0 -88
  130. data/lib/dnsimple/client/templates_domains.rb +0 -23
  131. data/lib/dnsimple/client/templates_records.rb +0 -88
  132. data/lib/dnsimple/client/users.rb +0 -39
  133. data/lib/dnsimple/client/vanity_name_servers.rb +0 -39
  134. data/lib/dnsimple/compatibility.rb +0 -46
  135. data/lib/dnsimple/struct/certificate.rb +0 -56
  136. data/lib/dnsimple/struct/membership.rb +0 -22
  137. data/lib/dnsimple/struct/price.rb +0 -16
  138. data/lib/dnsimple/struct/service.rb +0 -19
  139. data/lib/dnsimple/struct/template.rb +0 -19
  140. data/lib/dnsimple/struct/template_record.rb +0 -24
  141. data/lib/dnsimple/struct/transfer_order.rb +0 -10
  142. data/spec/dnsimple/client/certificates_spec.rb +0 -196
  143. data/spec/dnsimple/client/domains_autorenewals_spec.rb +0 -72
  144. data/spec/dnsimple/client/domains_forwards_spec.rb +0 -146
  145. data/spec/dnsimple/client/domains_privacy_spec.rb +0 -74
  146. data/spec/dnsimple/client/domains_records_spec.rb +0 -191
  147. data/spec/dnsimple/client/domains_sharing_spec.rb +0 -109
  148. data/spec/dnsimple/client/domains_zones_spec.rb +0 -40
  149. data/spec/dnsimple/client/name_servers_spec.rb +0 -131
  150. data/spec/dnsimple/client/services_domains_spec.rb +0 -101
  151. data/spec/dnsimple/client/services_spec.rb +0 -69
  152. data/spec/dnsimple/client/templates_domains_spec.rb +0 -38
  153. data/spec/dnsimple/client/templates_records_spec.rb +0 -180
  154. data/spec/dnsimple/client/templates_spec.rb +0 -166
  155. data/spec/dnsimple/client/users_spec.rb +0 -70
  156. data/spec/dnsimple/client/vanity_name_servers_spec.rb +0 -61
  157. data/spec/dnsimple/compatibility_spec.rb +0 -57
  158. data/spec/files/2fa/error-badtoken.http +0 -22
  159. data/spec/files/2fa/error-required.http +0 -23
  160. data/spec/files/2fa/exchange-token.http +0 -22
  161. data/spec/files/certificates/configure/success.http +0 -19
  162. data/spec/files/certificates/get/success.http +0 -19
  163. data/spec/files/certificates/list/success.http +0 -19
  164. data/spec/files/certificates/notfound.http +0 -19
  165. data/spec/files/certificates/purchase/success.http +0 -19
  166. data/spec/files/certificates/submit/success.http +0 -19
  167. data/spec/files/contacts/contact/success.http +0 -19
  168. data/spec/files/contacts/contacts/success.http +0 -23
  169. data/spec/files/contacts/create_contact/badrequest-missingcontact.http +0 -19
  170. data/spec/files/contacts/create_contact/badrequest-validationerror.http +0 -19
  171. data/spec/files/contacts/create_contact/created.http +0 -22
  172. data/spec/files/contacts/delete_contact/success-204.http +0 -18
  173. data/spec/files/contacts/delete_contact/success.http +0 -19
  174. data/spec/files/contacts/notfound-contact.http +0 -19
  175. data/spec/files/contacts/update_contact/success.http +0 -21
  176. data/spec/files/domains/create_domain/created.http +0 -21
  177. data/spec/files/domains/create_forward/created.http +0 -22
  178. data/spec/files/domains/create_membership/success.http +0 -21
  179. data/spec/files/domains/create_record/created.http +0 -21
  180. data/spec/files/domains/delete_domain/success-204.http +0 -18
  181. data/spec/files/domains/delete_domain/success.http +0 -19
  182. data/spec/files/domains/delete_forward/success.http +0 -17
  183. data/spec/files/domains/delete_membership/success.http +0 -17
  184. data/spec/files/domains/delete_record/success-204.http +0 -18
  185. data/spec/files/domains/delete_record/success.http +0 -19
  186. data/spec/files/domains/disable_auto_renewal/success.http +0 -21
  187. data/spec/files/domains/disable_whois_privacy/success.http +0 -21
  188. data/spec/files/domains/domain/success.http +0 -21
  189. data/spec/files/domains/domains/success.http +0 -21
  190. data/spec/files/domains/enable_auto_renewal/success.http +0 -21
  191. data/spec/files/domains/enable_whois_privacy/success.http +0 -22
  192. data/spec/files/domains/forward/success.http +0 -21
  193. data/spec/files/domains/forwards/success.http +0 -21
  194. data/spec/files/domains/memberships/success.http +0 -21
  195. data/spec/files/domains/notfound-domain.http +0 -19
  196. data/spec/files/domains/notfound-forward.http +0 -19
  197. data/spec/files/domains/notfound-membership.http +0 -19
  198. data/spec/files/domains/record/success.http +0 -19
  199. data/spec/files/domains/records/success.http +0 -19
  200. data/spec/files/domains/update_record/success.http +0 -21
  201. data/spec/files/domains/zone/success.http +0 -21
  202. data/spec/files/nameservers/change/success.http +0 -23
  203. data/spec/files/nameservers/deregister/success.http +0 -17
  204. data/spec/files/nameservers/name_servers/success.http +0 -23
  205. data/spec/files/nameservers/notfound-domain.http +0 -19
  206. data/spec/files/nameservers/register/badrequest-valueerror.http +0 -19
  207. data/spec/files/nameservers/register/success.http +0 -21
  208. data/spec/files/nameservers/vanity_name_servers/disabled.http +0 -23
  209. data/spec/files/nameservers/vanity_name_servers/enabled.http +0 -23
  210. data/spec/files/registrar/check/available.http +0 -19
  211. data/spec/files/registrar/check/registered.http +0 -21
  212. data/spec/files/registrar/extended_attributes/success.http +0 -21
  213. data/spec/files/registrar/prices/success.http +0 -21
  214. data/spec/files/registrar/register/badrequest-missingdomain.http +0 -19
  215. data/spec/files/registrar/register/badrequest-missingregistrant.http +0 -19
  216. data/spec/files/registrar/register/success.http +0 -21
  217. data/spec/files/registrar/renew/badrequest-missingrenewal.http +0 -19
  218. data/spec/files/registrar/renew/badrequest-unable.http +0 -19
  219. data/spec/files/registrar/renew/success.http +0 -21
  220. data/spec/files/registrar/transfer/success.http +0 -21
  221. data/spec/files/services/applied/success.http +0 -21
  222. data/spec/files/services/apply/success.http +0 -21
  223. data/spec/files/services/available/success.http +0 -21
  224. data/spec/files/services/notfound-service.http +0 -19
  225. data/spec/files/services/service/success.http +0 -21
  226. data/spec/files/services/services/success.http +0 -21
  227. data/spec/files/services/unapply/success.http +0 -21
  228. data/spec/files/subscriptions/subscription/success.http +0 -21
  229. data/spec/files/templates/apply_template/success.http +0 -21
  230. data/spec/files/templates/create_template/created.http +0 -22
  231. data/spec/files/templates/delete_template/success-204.http +0 -21
  232. data/spec/files/templates/delete_template/success.http +0 -21
  233. data/spec/files/templates/notfound-template.http +0 -19
  234. data/spec/files/templates/template/success.http +0 -21
  235. data/spec/files/templates/templates/success.http +0 -21
  236. data/spec/files/templates/update_template/success.http +0 -21
  237. data/spec/files/templates_records/create_record/created.http +0 -22
  238. data/spec/files/templates_records/delete_record/success-204.http +0 -19
  239. data/spec/files/templates_records/delete_record/success.http +0 -21
  240. data/spec/files/templates_records/notfound-template-record.http +0 -19
  241. data/spec/files/templates_records/record/success.http +0 -21
  242. data/spec/files/templates_records/records/success.http +0 -21
  243. data/spec/files/templates_records/update_record/success.http +0 -21
  244. data/spec/files/users/user/success.http +0 -21
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 21:38:30 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "3ec0e8e5fcd9a6e060f535fd2b9c9316"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 9fff6a94-1beb-48e4-857c-b1e37ddad15a
18
- X-Runtime: 0.412449
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"name":"google.com","status":"unavailable","price":"14.0","currency":"USD","currency_symbol":"$","minimum_number_of_years":1}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Sun, 21 Dec 2014 20:43:32 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "2268f37ed02b8ecf4d01ec8d258a375c"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 5bb3a831-be76-4c6f-ab1d-0aa2bce6c7ed
18
- X-Runtime: 0.920423
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"name":"uk_legal_type","description":"Legal type of registrant contact","required":false,"options":[{"title":"UK Individual","value":"IND","description":"UK Individual (our default value)"},{"title":"Non-UK Individual (representing self)","value":"FIND","description":"Non-UK Individual (representing self)"},{"title":"UK Limited Company","value":"LTD","description":"UK Limited Company"},{"title":"UK Public Limited Company","value":"PLC","description":"UK Public Limited Company"},{"title":"UK Partnership","value":"PTNR","description":"UK Partnership"},{"title":"UK LLP","value":"LLP","description":"UK Limited Liability Partnership"},{"title":"UK Sole Trader","value":"STRA","description":"UK Sole Trader"},{"title":"UK Registered Charity","value":"RCHAR","description":"UK Registered Charity"},{"title":"UK Industrial/Provident Registered Company","value":"IP","description":"UK Industrial/Provident Registered Company"},{"title":"UK School","value":"SCH","description":"UK School"},{"title":"Other Foreign","value":"FOTHER","description":"Other foreign organizations"},{"title":"UK Government Body","value":"GOV","description":"UK Government Body"},{"title":"UK Corporation by Royal Charter","value":"CRC","description":"UK Corporation by Royal Charter"},{"title":"UK Statutory Body","value":"STAT","description":"UK Statutory Body"},{"title":"UK Entity (other)","value":"OTHER","description":"UK Entity (other)"},{"title":"Non-UK Corporation","value":"FCORP","description":"Non-UK Corporation"},{"title":"Non-UK Organization (other)","value":"FOTHER","description":"Non-UK Organization"}]},{"name":"uk_reg_co_no","description":"Company identification number","required":false,"options":[]},{"name":"registered_for","description":"Company or person domain is registered for (this must be accurate and CANNOT BE CHANGED)","required":true,"options":[]},{"name":"uk_reg_opt_out","description":"Hide registrant data in Nominet WHOIS","required":false,"options":[{"title":"No","value":"n","description":"Do not hide the registrant contact information in Nominet's WHOIS."},{"title":"Yes","value":"y","description":"Hide the registrant contact information in Nominet's WHOIS (only available to individuals)."}]}]
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 22 Dec 2014 17:47:43 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "b98ac40d972551d502b401ce5e19d1c3"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 81a48039-3a15-4f52-8dde-2f30cf4bc2b8
18
- X-Runtime: 0.081422
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"price":{"tld":"com","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"net","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"org","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"me","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"us","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"info","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"mobi","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"la","minimum_registration":1,"registration_price":"60.00","registration_enabled":true,"transfer_price":"60.00","transfer_enabled":true,"renewal_price":"60.00","renewal_enabled":true}},{"price":{"tld":"asia","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"0.00","transfer_enabled":false,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"biz","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"co.uk","minimum_registration":2,"registration_price":"8.00","registration_enabled":true,"transfer_price":"8.00","transfer_enabled":true,"renewal_price":"8.00","renewal_enabled":true}},{"price":{"tld":"uk","minimum_registration":1,"registration_price":"8.00","registration_enabled":true,"transfer_price":"8.00","transfer_enabled":true,"renewal_price":"8.00","renewal_enabled":true}},{"price":{"tld":"org.uk","minimum_registration":2,"registration_price":"8.00","registration_enabled":true,"transfer_price":"8.00","transfer_enabled":true,"renewal_price":"8.00","renewal_enabled":true}},{"price":{"tld":"me.uk","minimum_registration":2,"registration_price":"8.00","registration_enabled":true,"transfer_price":"8.00","transfer_enabled":true,"renewal_price":"8.00","renewal_enabled":true}},{"price":{"tld":"tw","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"com.tw","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"org.tw","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"idv.tw","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"ca","minimum_registration":1,"registration_price":"16.00","registration_enabled":true,"transfer_price":"16.00","transfer_enabled":true,"renewal_price":"16.00","renewal_enabled":true}},{"price":{"tld":"eu","minimum_registration":1,"registration_price":"16.00","registration_enabled":true,"transfer_price":"16.00","transfer_enabled":true,"renewal_price":"16.00","renewal_enabled":true}},{"price":{"tld":"name","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"cc","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"ac","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"95.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"io","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"95.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"sh","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"95.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"tv","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"bz","minimum_registration":1,"registration_price":"35.00","registration_enabled":true,"transfer_price":"49.95","transfer_enabled":false,"renewal_price":"35.00","renewal_enabled":true}},{"price":{"tld":"nu","minimum_registration":2,"registration_price":"35.00","registration_enabled":true,"transfer_price":"49.95","transfer_enabled":false,"renewal_price":"35.00","renewal_enabled":true}},{"price":{"tld":"ws","minimum_registration":1,"registration_price":"35.00","registration_enabled":true,"transfer_price":"29.95","transfer_enabled":false,"renewal_price":"35.00","renewal_enabled":true}},{"price":{"tld":"pw","minimum_registration":1,"registration_price":"20.00","registration_enabled":true,"transfer_price":"20.00","transfer_enabled":true,"renewal_price":"20.00","renewal_enabled":true}},{"price":{"tld":"sg","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"de","minimum_registration":1,"registration_price":"20.00","registration_enabled":true,"transfer_price":"20.00","transfer_enabled":true,"renewal_price":"20.00","renewal_enabled":true}},{"price":{"tld":"be","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"29.95","transfer_enabled":false,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"tc","minimum_registration":1,"registration_price":"88.00","registration_enabled":true,"transfer_price":"88.00","transfer_enabled":false,"renewal_price":"88.00","renewal_enabled":true}},{"price":{"tld":"vg","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"85.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"ms","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"85.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"cm","minimum_registration":1,"registration_price":"130.00","registration_enabled":true,"transfer_price":"139.95","transfer_enabled":false,"renewal_price":"130.00","renewal_enabled":true}},{"price":{"tld":"gs","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"85.00","transfer_enabled":false,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"jp","minimum_registration":1,"registration_price":"100.00","registration_enabled":true,"transfer_price":"0.00","transfer_enabled":false,"renewal_price":"100.00","renewal_enabled":true}},{"price":{"tld":"net.nz","minimum_registration":1,"registration_price":"60.00","registration_enabled":true,"transfer_price":"69.95","transfer_enabled":false,"renewal_price":"60.00","renewal_enabled":true}},{"price":{"tld":"co.nz","minimum_registration":1,"registration_price":"60.00","registration_enabled":true,"transfer_price":"69.95","transfer_enabled":false,"renewal_price":"60.00","renewal_enabled":true}},{"price":{"tld":"org.nz","minimum_registration":1,"registration_price":"60.00","registration_enabled":true,"transfer_price":"69.95","transfer_enabled":false,"renewal_price":"60.00","renewal_enabled":true}},{"price":{"tld":"com.de","minimum_registration":1,"registration_price":"20.00","registration_enabled":true,"transfer_price":"20.00","transfer_enabled":true,"renewal_price":"20.00","renewal_enabled":true}},{"price":{"tld":"in","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"at","minimum_registration":1,"registration_price":"100.00","registration_enabled":true,"transfer_price":"99.95","transfer_enabled":false,"renewal_price":"100.00","renewal_enabled":true}},{"price":{"tld":"am","minimum_registration":1,"registration_price":"125.00","registration_enabled":true,"transfer_price":"0.00","transfer_enabled":false,"renewal_price":"125.00","renewal_enabled":true}},{"price":{"tld":"nl","minimum_registration":1,"registration_price":"12.00","registration_enabled":true,"transfer_price":"12.00","transfer_enabled":false,"renewal_price":"12.00","renewal_enabled":true}},{"price":{"tld":"it","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"39.95","transfer_enabled":false,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"fm","minimum_registration":1,"registration_price":"120.00","registration_enabled":true,"transfer_price":"0.00","transfer_enabled":false,"renewal_price":"120.00","renewal_enabled":true}},{"price":{"tld":"tel","minimum_registration":1,"registration_price":"15.00","registration_enabled":true,"transfer_price":"15.00","transfer_enabled":true,"renewal_price":"15.00","renewal_enabled":true}},{"price":{"tld":"co","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"pro","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"xxx","minimum_registration":1,"registration_price":"100.00","registration_enabled":true,"transfer_price":"100.00","transfer_enabled":true,"renewal_price":"100.00","renewal_enabled":true}},{"price":{"tld":"com.au","minimum_registration":2,"registration_price":"18.00","registration_enabled":true,"transfer_price":"18.00","transfer_enabled":false,"renewal_price":"18.00","renewal_enabled":true}},{"price":{"tld":"org.au","minimum_registration":2,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":false,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"net.au","minimum_registration":2,"registration_price":"18.00","registration_enabled":true,"transfer_price":"18.00","transfer_enabled":false,"renewal_price":"18.00","renewal_enabled":true}},{"price":{"tld":"es","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"com.es","minimum_registration":1,"registration_price":"10.00","registration_enabled":true,"transfer_price":"10.00","transfer_enabled":true,"renewal_price":"10.00","renewal_enabled":true}},{"price":{"tld":"org.es","minimum_registration":1,"registration_price":"10.00","registration_enabled":true,"transfer_price":"10.00","transfer_enabled":true,"renewal_price":"10.00","renewal_enabled":true}},{"price":{"tld":"nom.es","minimum_registration":1,"registration_price":"10.00","registration_enabled":true,"transfer_price":"10.00","transfer_enabled":true,"renewal_price":"10.00","renewal_enabled":true}},{"price":{"tld":"ch","minimum_registration":1,"registration_price":"16.00","registration_enabled":true,"transfer_price":"16.00","transfer_enabled":true,"renewal_price":"16.00","renewal_enabled":true}},{"price":{"tld":"li","minimum_registration":1,"registration_price":"16.00","registration_enabled":true,"transfer_price":"16.00","transfer_enabled":false,"renewal_price":"16.00","renewal_enabled":true}},{"price":{"tld":"fr","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":false,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"pe","minimum_registration":1,"registration_price":"65.00","registration_enabled":true,"transfer_price":"65.00","transfer_enabled":true,"renewal_price":"65.00","renewal_enabled":true}},{"price":{"tld":"org.pe","minimum_registration":1,"registration_price":"65.00","registration_enabled":true,"transfer_price":"65.00","transfer_enabled":true,"renewal_price":"65.00","renewal_enabled":true}},{"price":{"tld":"nom.pe","minimum_registration":1,"registration_price":"65.00","registration_enabled":true,"transfer_price":"65.00","transfer_enabled":true,"renewal_price":"65.00","renewal_enabled":true}},{"price":{"tld":"com.pe","minimum_registration":1,"registration_price":"65.00","registration_enabled":true,"transfer_price":"65.00","transfer_enabled":true,"renewal_price":"65.00","renewal_enabled":true}},{"price":{"tld":"net.pe","minimum_registration":1,"registration_price":"65.00","registration_enabled":true,"transfer_price":"65.00","transfer_enabled":true,"renewal_price":"65.00","renewal_enabled":true}},{"price":{"tld":"sexy","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"domains","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"tips","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"today","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"technology","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"systems","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"guru","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"builders","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"email","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"solutions","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"support","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"coffee","minimum_registration":1,"registration_price":"45.00","registration_enabled":true,"transfer_price":"45.00","transfer_enabled":true,"renewal_price":"45.00","renewal_enabled":true}},{"price":{"tld":"zone","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"expert","minimum_registration":1,"registration_price":"70.00","registration_enabled":true,"transfer_price":"70.00","transfer_enabled":true,"renewal_price":"70.00","renewal_enabled":true}},{"price":{"tld":"report","minimum_registration":1,"registration_price":"25.00","registration_enabled":true,"transfer_price":"25.00","transfer_enabled":true,"renewal_price":"25.00","renewal_enabled":true}},{"price":{"tld":"ink","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"social","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"reviews","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"exchange","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"services","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"wiki","minimum_registration":1,"registration_price":"35.00","registration_enabled":true,"transfer_price":"35.00","transfer_enabled":true,"renewal_price":"35.00","renewal_enabled":true}},{"price":{"tld":"club","minimum_registration":1,"registration_price":"15.00","registration_enabled":true,"transfer_price":"15.00","transfer_enabled":true,"renewal_price":"15.00","renewal_enabled":true}},{"price":{"tld":"berlin","minimum_registration":1,"registration_price":"50.00","registration_enabled":true,"transfer_price":"50.00","transfer_enabled":true,"renewal_price":"50.00","renewal_enabled":true}},{"price":{"tld":"computer","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"pictures","minimum_registration":1,"registration_price":"14.00","registration_enabled":true,"transfer_price":"14.00","transfer_enabled":true,"renewal_price":"14.00","renewal_enabled":true}},{"price":{"tld":"wtf","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"fail","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}},{"price":{"tld":"industries","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"codes","minimum_registration":1,"registration_price":"60.00","registration_enabled":true,"transfer_price":"60.00","transfer_enabled":true,"renewal_price":"60.00","renewal_enabled":true}},{"price":{"tld":"watch","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"digital","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"media","minimum_registration":1,"registration_price":"40.00","registration_enabled":true,"transfer_price":"40.00","transfer_enabled":true,"renewal_price":"40.00","renewal_enabled":true}},{"price":{"tld":"software","minimum_registration":1,"registration_price":"30.00","registration_enabled":true,"transfer_price":"30.00","transfer_enabled":true,"renewal_price":"30.00","renewal_enabled":true}}]
@@ -1,19 +0,0 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 22:49:03 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 400 Bad Request
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Cache-Control: no-cache
16
- X-Request-Id: 03ac0f0b-c485-4465-bed9-d584f9865ccd
17
- X-Runtime: 0.027365
18
-
19
- {"message":"Required parameter missing: domain"}
@@ -1,19 +0,0 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 22:52:06 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 400 Bad Request
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Cache-Control: no-cache
16
- X-Request-Id: 5542b2f5-628d-4ddc-845e-32282496d37c
17
- X-Runtime: 1.826527
18
-
19
- {"message":"Validation failed","errors":{"base":["A registrant is required"]}}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 23:04:01 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 201 Created
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "642e37a05eb4016a974eb52085385822"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: c67b3494-bea3-4fe3-9fdd-8ec5ca89095e
18
- X-Runtime: 5.852385
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"domain":{"id":1797,"user_id":null,"registrant_id":409,"name":"example-1418683185.com","unicode_name":"example-1418683185.com","token":"domain-token","state":"registered","language":null,"lockable":true,"auto_renew":false,"whois_protected":false,"record_count":5,"service_count":0,"expires_on":"2015-12-15","created_at":"2014-12-15T23:03:56.636Z","updated_at":"2014-12-15T23:04:01.406Z"}}
@@ -1,19 +0,0 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 23:22:54 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 400 Bad Request
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Cache-Control: no-cache
16
- X-Request-Id: 94aa82e2-ae9e-4298-9524-5ac0e9d0a1b7
17
- X-Runtime: 0.041781
18
-
19
- {"message":"Required parameter missing: domain_renewal"}
@@ -1,19 +0,0 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 23:21:08 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 400 Bad Request
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Cache-Control: no-cache
16
- X-Request-Id: 60f79466-a97b-4f6a-b3e2-95a7f22da87c
17
- X-Runtime: 0.060428
18
-
19
- {"message":"example-1418683185.com may not be renewed at this time"}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 23:04:01 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 201 Created
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "642e37a05eb4016a974eb52085385822"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: c67b3494-bea3-4fe3-9fdd-8ec5ca89095e
18
- X-Runtime: 5.852385
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"domain":{"id":1797,"user_id":null,"registrant_id":409,"name":"example-1418683185.com","unicode_name":"example-1418683185.com","token":"domain-token","state":"registered","language":null,"lockable":true,"auto_renew":false,"whois_protected":false,"record_count":5,"service_count":0,"expires_on":"2015-12-15","created_at":"2014-12-15T23:03:56.636Z","updated_at":"2014-12-15T23:04:01.406Z"}}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Tue, 16 Dec 2014 00:15:46 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 201 Created
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "8ae2f909210b303eebe68b66e636b117"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: c1ecc834-9cf7-4973-b060-34b701e6b686
18
- X-Runtime: 16.594202
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"transfer_order":{"id":11,"domain_id":1803,"state":"submitted","created_at":"2014-12-16T00:15:44.781Z","updated_at":"2014-12-16T00:15:46.065Z"}}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:15:05 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "adea7f581d55ab3c236dc2db73a8e21a"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 78c0b218-05d2-4883-bbf4-658702bc4a72
18
- X-Runtime: 0.067607
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"service":{"id":1,"name":"Google Apps","short_name":"google-apps","description":"All the records you need for Google Apps to function.","created_at":"2014-01-29T12:33:07.214Z","updated_at":"2014-01-29T12:33:07.229Z"}}]
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:33:00 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "206f6d03d86451f437439ba32f7f7ff7"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 0ea557bf-a2a0-42c7-b196-1ae6ce55904c
18
- X-Runtime: 0.323113
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"service":{"id":1,"name":"Google Apps","short_name":"google-apps","description":"All the records you need for Google Apps to function.","created_at":"2014-01-29T12:33:07.214Z","updated_at":"2014-01-29T12:33:07.229Z"}},{"service":{"id":7,"name":"Tender","short_name":"tender","description":"Use Tender for your customer support","created_at":"2010-12-15T08:08:02.853Z","updated_at":"2013-09-12T21:36:32.932Z"}}]
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:15:05 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "adea7f581d55ab3c236dc2db73a8e21a"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 78c0b218-05d2-4883-bbf4-658702bc4a72
18
- X-Runtime: 0.067607
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"service":{"id":1,"name":"Google Apps","short_name":"google-apps","description":"All the records you need for Google Apps to function.","created_at":"2014-01-29T12:33:07.214Z","updated_at":"2014-01-29T12:33:07.229Z"}}]
@@ -1,19 +0,0 @@
1
- HTTP/1.1 404 Not Found
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:08:27 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 404 Not Found
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Cache-Control: no-cache
16
- X-Request-Id: fc00856e-1044-4ce7-b244-f1669931efa0
17
- X-Runtime: 0.033433
18
-
19
- {"message":"Service `0' not found"}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:07:51 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "44ebf8f9a5640a00c6a8ce4f1a827712"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: fdae1bd3-bbb9-42f4-9d0d-75d56ce95fea
18
- X-Runtime: 0.048314
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"service":{"id":1,"name":"Google Apps","short_name":"google-apps","description":"All the records you need for Google Apps to function.","created_at":"2014-01-29T12:33:07.214Z","updated_at":"2014-01-29T12:33:07.229Z"}}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:00:47 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "b84bfca93cf0fc431600cdc344fcf0b4"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 7912346f-8b87-4c6d-94c6-57f43a3f77a1
18
- X-Runtime: 0.051441
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- [{"service":{"id":1,"name":"Google Apps","short_name":"google-apps","description":"All the records you need for Google Apps to function.","created_at":"2014-01-29T12:33:07.214Z","updated_at":"2014-01-29T12:33:07.229Z"}},{"service":{"id":2,"name":"Heroku","short_name":"heroku","description":"Use Heroku as your web host.","created_at":"2010-12-15T08:08:02.792Z","updated_at":"2013-05-04T06:38:30.860Z"}},{"service":{"id":35,"name":"Heroku SSL","short_name":"heroku-ssl","description":"Use Heroku as your web host, with SSL support.","created_at":"2014-02-17T09:43:55.219Z","updated_at":"2014-02-17T09:43:55.233Z"}}]
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 10:33:56 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "6bdbf603809e0847d57208b71f4ea116"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 496c0212-0e61-4bc5-b3eb-94222fef21d3
18
- X-Runtime: 0.470952
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"id":7,"status":"deleted"}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Tue, 16 Dec 2014 12:59:43 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "49b889276a103ada8c1a1585dcdce7c6"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 14ad790f-a743-4e0b-9b96-76f1723bf153
18
- X-Runtime: 0.064047
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"subscription":{"id":147,"user_id":null,"plan_name":"Gold","state":"subscribed","domain_limit":50,"created_at":"2014-12-06T15:55:07.494Z","updated_at":"2014-12-15T15:44:45.429Z"}}
@@ -1,21 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 20:27:04 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 200 OK
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- ETag: "882c85c0756e35625681ceb5262b0fe6"
16
- Cache-Control: max-age=0, private, must-revalidate
17
- X-Request-Id: 9a8e4510-d956-4a94-8a76-dd86669afef4
18
- X-Runtime: 0.395985
19
- Strict-Transport-Security: max-age=315360000
20
-
21
- {"domain":{"id":1,"user_id":21,"registrant_id":321,"name":"example.com","unicode_name":"example.com","token":"domain-token","state":"registered","language":null,"lockable":false,"auto_renew":true,"whois_protected":false,"record_count":5,"service_count":1,"expires_on":"2015-09-27","created_at":"2012-09-27T14:25:57.646Z","updated_at":"2014-12-15T20:27:04.552Z"}}
@@ -1,22 +0,0 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Mon, 15 Dec 2014 14:27:51 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 201 Created
8
- Strict-Transport-Security: max-age=631138519
9
- X-Frame-Options: SAMEORIGIN
10
- X-XSS-Protection: 1
11
- X-Content-Type-Options: nosniff
12
- Access-Control-Allow-Origin: *
13
- Access-Control-Allow-Headers: Authorization,Accepts,Content-Type,X-DNSimple-Token,X-DNSimple-Domain-Token,X-CSRF-Token,x-requested-with
14
- Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
15
- Location: /templates/2946
16
- ETag: "5ac7df35c5efb57fd52458429f945a97"
17
- Cache-Control: max-age=0, private, must-revalidate
18
- X-Request-Id: 437773da-9d5a-4eaf-b8c8-a8d032bddeac
19
- X-Runtime: 0.127665
20
- Strict-Transport-Security: max-age=315360000
21
-
22
- {"dns_template":{"id":2946,"user_id":null,"name":"foo","short_name":"bar","description":null,"created_at":"2014-12-15T14:27:51.896Z","updated_at":"2014-12-15T14:27:51.896Z"}}