dnsimple 11.0.0 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (272) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +10 -5
  3. data/.github/workflows/release.yml +44 -13
  4. data/.github/workflows/sync-test-fixtures.yml +1 -1
  5. data/.rubocop.yml +4 -1
  6. data/.rubocop_dnsimple.yml +14 -42
  7. data/.rubocop_todo.yml +4 -9
  8. data/CHANGELOG.md +287 -181
  9. data/CONTRIBUTING.md +6 -40
  10. data/Gemfile +1 -1
  11. data/LICENSE.txt +1 -1
  12. data/README.md +49 -40
  13. data/RELEASING.md +67 -0
  14. data/dnsimple.gemspec +1 -1
  15. data/lib/dnsimple/client/accounts.rb +1 -3
  16. data/lib/dnsimple/client/billing.rb +2 -4
  17. data/lib/dnsimple/client/certificates.rb +0 -2
  18. data/lib/dnsimple/client/clients.rb +2 -40
  19. data/lib/dnsimple/client/contacts.rb +17 -19
  20. data/lib/dnsimple/client/dns_analytics.rb +2 -4
  21. data/lib/dnsimple/client/domains.rb +13 -15
  22. data/lib/dnsimple/client/domains_delegation_signer_records.rb +18 -20
  23. data/lib/dnsimple/client/domains_dnssec.rb +9 -11
  24. data/lib/dnsimple/client/domains_email_forwards.rb +18 -20
  25. data/lib/dnsimple/client/domains_pushes.rb +13 -15
  26. data/lib/dnsimple/client/identity.rb +4 -9
  27. data/lib/dnsimple/client/oauth.rb +1 -3
  28. data/lib/dnsimple/client/registrar.rb +45 -47
  29. data/lib/dnsimple/client/registrar_auto_renewal.rb +6 -8
  30. data/lib/dnsimple/client/registrar_delegation.rb +14 -16
  31. data/lib/dnsimple/client/registrar_registrant_changes.rb +14 -16
  32. data/lib/dnsimple/client/registrar_transfer_lock.rb +9 -11
  33. data/lib/dnsimple/client/registrar_whois_privacy.rb +6 -48
  34. data/lib/dnsimple/client/services.rb +4 -6
  35. data/lib/dnsimple/client/services_domains.rb +12 -14
  36. data/lib/dnsimple/client/templates.rb +17 -19
  37. data/lib/dnsimple/client/templates_domains.rb +4 -6
  38. data/lib/dnsimple/client/templates_records.rb +18 -20
  39. data/lib/dnsimple/client/tlds.rb +6 -8
  40. data/lib/dnsimple/client/vanity_name_servers.rb +0 -2
  41. data/lib/dnsimple/client/webhooks.rb +11 -13
  42. data/lib/dnsimple/client/zones.rb +16 -18
  43. data/lib/dnsimple/client/zones_distributions.rb +4 -6
  44. data/lib/dnsimple/client/zones_records.rb +57 -26
  45. data/lib/dnsimple/client.rb +22 -24
  46. data/lib/dnsimple/default.rb +0 -4
  47. data/lib/dnsimple/error.rb +0 -6
  48. data/lib/dnsimple/extra.rb +4 -6
  49. data/lib/dnsimple/options.rb +1 -7
  50. data/lib/dnsimple/response.rb +4 -13
  51. data/lib/dnsimple/struct/account.rb +0 -2
  52. data/lib/dnsimple/struct/certificate.rb +0 -2
  53. data/lib/dnsimple/struct/certificate_bundle.rb +0 -2
  54. data/lib/dnsimple/struct/certificate_purchase.rb +0 -2
  55. data/lib/dnsimple/struct/certificate_renewal.rb +0 -2
  56. data/lib/dnsimple/struct/charge.rb +4 -8
  57. data/lib/dnsimple/struct/collaborator.rb +0 -2
  58. data/lib/dnsimple/struct/contact.rb +0 -2
  59. data/lib/dnsimple/struct/delegation_signer_record.rb +0 -2
  60. data/lib/dnsimple/struct/dns_analytics.rb +0 -2
  61. data/lib/dnsimple/struct/dnssec.rb +0 -2
  62. data/lib/dnsimple/struct/domain.rb +0 -2
  63. data/lib/dnsimple/struct/domain_check.rb +0 -2
  64. data/lib/dnsimple/struct/domain_premium_price.rb +0 -2
  65. data/lib/dnsimple/struct/domain_price.rb +0 -2
  66. data/lib/dnsimple/struct/domain_push.rb +0 -2
  67. data/lib/dnsimple/struct/domain_registration.rb +0 -2
  68. data/lib/dnsimple/struct/domain_renewal.rb +0 -2
  69. data/lib/dnsimple/struct/domain_restore.rb +0 -2
  70. data/lib/dnsimple/struct/domain_transfer.rb +0 -2
  71. data/lib/dnsimple/struct/email_forward.rb +0 -2
  72. data/lib/dnsimple/struct/extended_attribute.rb +0 -4
  73. data/lib/dnsimple/struct/oauth_token.rb +0 -2
  74. data/lib/dnsimple/struct/registrant_change.rb +0 -2
  75. data/lib/dnsimple/struct/registrant_change_check.rb +0 -2
  76. data/lib/dnsimple/struct/service.rb +0 -4
  77. data/lib/dnsimple/struct/template.rb +0 -2
  78. data/lib/dnsimple/struct/template_record.rb +0 -2
  79. data/lib/dnsimple/struct/tld.rb +0 -2
  80. data/lib/dnsimple/struct/transfer_lock.rb +0 -2
  81. data/lib/dnsimple/struct/user.rb +0 -2
  82. data/lib/dnsimple/struct/vanity_name_server.rb +0 -2
  83. data/lib/dnsimple/struct/webhook.rb +0 -2
  84. data/lib/dnsimple/struct/whoami.rb +2 -4
  85. data/lib/dnsimple/struct/whois_privacy.rb +0 -2
  86. data/lib/dnsimple/struct/zone.rb +0 -2
  87. data/lib/dnsimple/struct/zone_distribution.rb +0 -2
  88. data/lib/dnsimple/struct/zone_file.rb +0 -2
  89. data/lib/dnsimple/struct/zone_record.rb +0 -2
  90. data/lib/dnsimple/struct/zone_record_id.rb +10 -0
  91. data/lib/dnsimple/struct/zone_records_batch_change.rb +16 -0
  92. data/lib/dnsimple/struct.rb +2 -3
  93. data/lib/dnsimple/version.rb +1 -3
  94. data/lib/dnsimple.rb +1 -3
  95. data/spec/dnsimple/client/client_service_spec.rb +12 -10
  96. data/spec/dnsimple/client/domains_delegation_signer_records_spec.rb +2 -2
  97. data/spec/dnsimple/client/oauth_spec.rb +6 -6
  98. data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +0 -82
  99. data/spec/dnsimple/client/zones_records_spec.rb +95 -0
  100. data/spec/fixtures.http/acceptPush/success.http +15 -15
  101. data/spec/fixtures.http/accounts/success-account.http +20 -20
  102. data/spec/fixtures.http/accounts/success-user.http +21 -21
  103. data/spec/fixtures.http/activateZoneService/success.http +16 -16
  104. data/spec/fixtures.http/appliedServices/success.http +19 -19
  105. data/spec/fixtures.http/applyService/success.http +15 -15
  106. data/spec/fixtures.http/applyTemplate/success.http +13 -13
  107. data/spec/fixtures.http/authorizeDomainTransferOut/success.http +13 -13
  108. data/spec/fixtures.http/badgateway.http +5 -5
  109. data/spec/fixtures.http/batchChangeZoneRecords/error_400_create_validation_failed.http +16 -0
  110. data/spec/fixtures.http/batchChangeZoneRecords/error_400_delete_validation_failed.http +15 -0
  111. data/spec/fixtures.http/batchChangeZoneRecords/error_400_update_validation_failed.http +15 -0
  112. data/spec/fixtures.http/batchChangeZoneRecords/success.http +16 -0
  113. data/spec/fixtures.http/cancelDomainTransfer/success.http +17 -17
  114. data/spec/fixtures.http/changeDomainDelegation/success.http +15 -15
  115. data/spec/fixtures.http/changeDomainDelegationFromVanity/success.http +15 -15
  116. data/spec/fixtures.http/changeDomainDelegationToVanity/success.http +17 -17
  117. data/spec/fixtures.http/checkDomain/success.http +15 -15
  118. data/spec/fixtures.http/checkRegistrantChange/error-contactnotfound.http +3 -3
  119. data/spec/fixtures.http/checkRegistrantChange/error-domainnotfound.http +3 -3
  120. data/spec/fixtures.http/checkRegistrantChange/success.http +15 -15
  121. data/spec/fixtures.http/checkZoneDistribution/error.http +17 -17
  122. data/spec/fixtures.http/checkZoneDistribution/failure.http +17 -17
  123. data/spec/fixtures.http/checkZoneDistribution/success.http +17 -17
  124. data/spec/fixtures.http/checkZoneRecordDistribution/error.http +17 -17
  125. data/spec/fixtures.http/checkZoneRecordDistribution/failure.http +17 -17
  126. data/spec/fixtures.http/checkZoneRecordDistribution/success.http +17 -17
  127. data/spec/fixtures.http/createContact/created.http +16 -16
  128. data/spec/fixtures.http/createContact/error-validation-errors.http +15 -15
  129. data/spec/fixtures.http/createDelegationSignerRecord/created.http +17 -17
  130. data/spec/fixtures.http/createDelegationSignerRecord/validation-error.http +15 -15
  131. data/spec/fixtures.http/createDomain/created.http +19 -19
  132. data/spec/fixtures.http/createEmailForward/created.http +21 -21
  133. data/spec/fixtures.http/createPrimaryServer/created.http +20 -20
  134. data/spec/fixtures.http/createRegistrantChange/success.http +14 -14
  135. data/spec/fixtures.http/createSecondaryZone/created.http +20 -20
  136. data/spec/fixtures.http/createTemplate/created.http +15 -15
  137. data/spec/fixtures.http/createTemplateRecord/created.http +16 -16
  138. data/spec/fixtures.http/createWebhook/created.http +13 -13
  139. data/spec/fixtures.http/createZoneRecord/created-apex.http +13 -13
  140. data/spec/fixtures.http/createZoneRecord/created.http +13 -13
  141. data/spec/fixtures.http/deactivateZoneService/success.http +16 -16
  142. data/spec/fixtures.http/deleteContact/error-contact-in-use.http +15 -15
  143. data/spec/fixtures.http/deleteContact/success.http +13 -13
  144. data/spec/fixtures.http/deleteDelegationSignerRecord/success.http +15 -15
  145. data/spec/fixtures.http/deleteDomain/success.http +11 -11
  146. data/spec/fixtures.http/deleteEmailForward/success.http +18 -18
  147. data/spec/fixtures.http/deleteRegistrantChange/success.http +13 -13
  148. data/spec/fixtures.http/deleteRegistrantChange/success_async.http +3 -3
  149. data/spec/fixtures.http/deleteTemplate/success.http +13 -13
  150. data/spec/fixtures.http/deleteTemplateRecord/success.http +13 -13
  151. data/spec/fixtures.http/deleteWebhook/success.http +13 -13
  152. data/spec/fixtures.http/deleteZoneRecord/success.http +11 -11
  153. data/spec/fixtures.http/disableDnssec/not-enabled.http +15 -15
  154. data/spec/fixtures.http/disableDnssec/success.http +15 -15
  155. data/spec/fixtures.http/disableDomainAutoRenewal/success.http +13 -13
  156. data/spec/fixtures.http/disableDomainTransferLock/success.http +17 -17
  157. data/spec/fixtures.http/disableVanityNameServers/success.http +15 -15
  158. data/spec/fixtures.http/disableWhoisPrivacy/success.http +16 -16
  159. data/spec/fixtures.http/dnsAnalytics/success.http +17 -17
  160. data/spec/fixtures.http/downloadCertificate/success.http +19 -19
  161. data/spec/fixtures.http/enableDnssec/success.http +17 -17
  162. data/spec/fixtures.http/enableDomainAutoRenewal/success.http +13 -13
  163. data/spec/fixtures.http/enableDomainTransferLock/success.http +17 -17
  164. data/spec/fixtures.http/enableVanityNameServers/success.http +17 -17
  165. data/spec/fixtures.http/enableWhoisPrivacy/created.http +16 -16
  166. data/spec/fixtures.http/enableWhoisPrivacy/success.http +16 -16
  167. data/spec/fixtures.http/getCertificate/success.http +19 -19
  168. data/spec/fixtures.http/getCertificatePrivateKey/success.http +20 -20
  169. data/spec/fixtures.http/getContact/success.http +16 -16
  170. data/spec/fixtures.http/getDelegationSignerRecord/success.http +17 -17
  171. data/spec/fixtures.http/getDnssec/success.http +17 -17
  172. data/spec/fixtures.http/getDomain/success.http +19 -19
  173. data/spec/fixtures.http/getDomainDelegation/success-empty.http +15 -15
  174. data/spec/fixtures.http/getDomainDelegation/success.http +15 -15
  175. data/spec/fixtures.http/getDomainPrices/failure.http +18 -18
  176. data/spec/fixtures.http/getDomainPrices/success.http +21 -21
  177. data/spec/fixtures.http/getDomainRegistration/success.http +20 -20
  178. data/spec/fixtures.http/getDomainRenewal/success.http +20 -20
  179. data/spec/fixtures.http/getDomainRestore/success.http +22 -19
  180. data/spec/fixtures.http/getDomainTransfer/success.http +19 -19
  181. data/spec/fixtures.http/getDomainTransferLock/success.http +17 -17
  182. data/spec/fixtures.http/getEmailForward/success.http +21 -21
  183. data/spec/fixtures.http/getPrimaryServer/success.http +20 -20
  184. data/spec/fixtures.http/getRegistrantChange/success.http +15 -15
  185. data/spec/fixtures.http/getService/success.http +16 -16
  186. data/spec/fixtures.http/getTemplate/success.http +15 -15
  187. data/spec/fixtures.http/getTemplateRecord/success.http +16 -16
  188. data/spec/fixtures.http/getTld/success.http +20 -20
  189. data/spec/fixtures.http/getTldExtendedAttributes/success-attributes.http +15 -15
  190. data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +15 -15
  191. data/spec/fixtures.http/getTldExtendedAttributes/success.http +15 -15
  192. data/spec/fixtures.http/getWebhook/success.http +13 -13
  193. data/spec/fixtures.http/getZone/success.http +16 -16
  194. data/spec/fixtures.http/getZoneFile/success.http +17 -17
  195. data/spec/fixtures.http/getZoneRecord/success.http +17 -17
  196. data/spec/fixtures.http/initiatePush/success.http +17 -17
  197. data/spec/fixtures.http/issueLetsencryptCertificate/success.http +17 -17
  198. data/spec/fixtures.http/issueRenewalLetsencryptCertificate/success.http +17 -17
  199. data/spec/fixtures.http/linkPrimaryServer/success.http +20 -20
  200. data/spec/fixtures.http/listAccounts/success-account.http +20 -20
  201. data/spec/fixtures.http/listAccounts/success-user.http +20 -20
  202. data/spec/fixtures.http/listCertificates/success.http +19 -19
  203. data/spec/fixtures.http/listCharges/fail-400-bad-filter.http +9 -9
  204. data/spec/fixtures.http/listCharges/fail-403.http +9 -9
  205. data/spec/fixtures.http/listCharges/success.http +9 -9
  206. data/spec/fixtures.http/listContacts/success.http +16 -16
  207. data/spec/fixtures.http/listDelegationSignerRecords/success.http +17 -17
  208. data/spec/fixtures.http/listDomains/success.http +19 -19
  209. data/spec/fixtures.http/listEmailForwards/success.http +13 -13
  210. data/spec/fixtures.http/listPrimaryServers/success.http +20 -20
  211. data/spec/fixtures.http/listPushes/success.http +17 -17
  212. data/spec/fixtures.http/listRegistrantChanges/success.http +15 -15
  213. data/spec/fixtures.http/listServices/success.http +17 -17
  214. data/spec/fixtures.http/listTemplateRecords/success.http +16 -16
  215. data/spec/fixtures.http/listTemplates/success.http +15 -15
  216. data/spec/fixtures.http/listTlds/success.http +20 -20
  217. data/spec/fixtures.http/listWebhooks/success.http +13 -13
  218. data/spec/fixtures.http/listZoneRecords/success.http +17 -17
  219. data/spec/fixtures.http/listZones/success.http +16 -16
  220. data/spec/fixtures.http/method-not-allowed.http +8 -8
  221. data/spec/fixtures.http/notfound-certificate.http +12 -12
  222. data/spec/fixtures.http/notfound-contact.http +10 -10
  223. data/spec/fixtures.http/notfound-delegationSignerRecord.http +11 -0
  224. data/spec/fixtures.http/notfound-domain.http +8 -8
  225. data/spec/fixtures.http/notfound-domainpush.http +8 -8
  226. data/spec/fixtures.http/notfound-emailforward.http +8 -8
  227. data/spec/fixtures.http/notfound-record.http +10 -10
  228. data/spec/fixtures.http/notfound-template.http +10 -10
  229. data/spec/fixtures.http/notfound-webhook.http +8 -8
  230. data/spec/fixtures.http/notfound-whoisprivacy.http +10 -10
  231. data/spec/fixtures.http/notfound-zone.http +10 -10
  232. data/spec/fixtures.http/oauthAccessToken/error-invalid-request.http +12 -12
  233. data/spec/fixtures.http/oauthAccessToken/success.http +16 -16
  234. data/spec/fixtures.http/pages-1of3.http +12 -12
  235. data/spec/fixtures.http/pages-2of3.http +12 -12
  236. data/spec/fixtures.http/pages-3of3.http +12 -12
  237. data/spec/fixtures.http/purchaseLetsencryptCertificate/success.http +19 -19
  238. data/spec/fixtures.http/purchaseRenewalLetsencryptCertificate/success.http +19 -19
  239. data/spec/fixtures.http/registerDomain/error-extended-attributes.http +15 -15
  240. data/spec/fixtures.http/registerDomain/success.http +20 -20
  241. data/spec/fixtures.http/rejectPush/success.http +15 -15
  242. data/spec/fixtures.http/renewDomain/error-tooearly.http +14 -14
  243. data/spec/fixtures.http/renewDomain/success.http +20 -20
  244. data/spec/fixtures.http/response.http +12 -12
  245. data/spec/fixtures.http/restoreDomain/success.http +22 -19
  246. data/spec/fixtures.http/success-with-malformed-json.http +4 -4
  247. data/spec/fixtures.http/transferDomain/error-indnsimple.http +13 -13
  248. data/spec/fixtures.http/transferDomain/error-missing-authcode.http +13 -13
  249. data/spec/fixtures.http/transferDomain/success.http +20 -20
  250. data/spec/fixtures.http/unapplyService/success.http +15 -15
  251. data/spec/fixtures.http/unlinkPrimaryServer/success.http +20 -20
  252. data/spec/fixtures.http/updateContact/success.http +16 -16
  253. data/spec/fixtures.http/updateTemplate/success.http +15 -15
  254. data/spec/fixtures.http/updateZoneNsRecords/success.http +16 -16
  255. data/spec/fixtures.http/updateZoneRecord/success.http +17 -17
  256. data/spec/fixtures.http/validation-error.http +15 -15
  257. data/spec/fixtures.http/whoami/success-account.http +15 -15
  258. data/spec/fixtures.http/whoami/success-user.http +15 -15
  259. data/spec/fixtures.http/whoami/success.http +15 -15
  260. data/spec/support/helpers.rb +0 -2
  261. metadata +14 -14
  262. data/lib/dnsimple/struct/whois_privacy_renewal.rb +0 -30
  263. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_not_a_premium_domain.http +0 -18
  264. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_tld_not_supported.http +0 -18
  265. data/spec/fixtures.http/checkDomainPremiumPrice/success.http +0 -20
  266. data/spec/fixtures.http/getDomainPremiumPrice/failure.http +0 -15
  267. data/spec/fixtures.http/getDomainPremiumPrice/success.http +0 -20
  268. data/spec/fixtures.http/getWhoisPrivacy/success.http +0 -16
  269. data/spec/fixtures.http/notfound-delegationsignerrecord.http +0 -11
  270. data/spec/fixtures.http/renewWhoisPrivacy/success.http +0 -20
  271. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-duplicated-order.http +0 -18
  272. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-not-found.http +0 -18
@@ -1,15 +1,15 @@
1
1
  HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Wed, 16 Dec 2015 13:36:11 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4000
7
- X-RateLimit-Remaining: 3997
8
- X-RateLimit-Reset: 1450272970
9
- ETag: W/"2679531e6cce6cd326f255255d7a0005"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
- X-Runtime: 0.093714
13
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Wed, 16 Dec 2015 13:36:11 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4000
7
+ x-ratelimit-remaining: 3997
8
+ x-ratelimit-reset: 1450272970
9
+ etag: W/"2679531e6cce6cd326f255255d7a0005"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
+ x-runtime: 0.093714
13
+ strict-transport-security: max-age=31536000
14
14
 
15
15
  {"data":[{"id":1},{"id":2}],"pagination":{"current_page":1,"per_page":2,"total_entries":5,"total_pages":3}}
@@ -1,15 +1,15 @@
1
1
  HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Wed, 16 Dec 2015 13:36:11 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4000
7
- X-RateLimit-Remaining: 3997
8
- X-RateLimit-Reset: 1450272970
9
- ETag: W/"2679531e6cce6cd326f255255d7a0005"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
- X-Runtime: 0.093714
13
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Wed, 16 Dec 2015 13:36:11 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4000
7
+ x-ratelimit-remaining: 3997
8
+ x-ratelimit-reset: 1450272970
9
+ etag: W/"2679531e6cce6cd326f255255d7a0005"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
+ x-runtime: 0.093714
13
+ strict-transport-security: max-age=31536000
14
14
 
15
15
  {"data":[{"id":3},{"id":4}],"pagination":{"current_page":2,"per_page":2,"total_entries":5,"total_pages":3}}
@@ -1,15 +1,15 @@
1
1
  HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Wed, 16 Dec 2015 13:36:11 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4000
7
- X-RateLimit-Remaining: 3997
8
- X-RateLimit-Reset: 1450272970
9
- ETag: W/"2679531e6cce6cd326f255255d7a0005"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
- X-Runtime: 0.093714
13
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Wed, 16 Dec 2015 13:36:11 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4000
7
+ x-ratelimit-remaining: 3997
8
+ x-ratelimit-reset: 1450272970
9
+ etag: W/"2679531e6cce6cd326f255255d7a0005"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: a87f1b44-150a-4ed0-b7da-9301fa1465b0
12
+ x-runtime: 0.093714
13
+ strict-transport-security: max-age=31536000
14
14
 
15
15
  {"data":[{"id":5}],"pagination":{"current_page":3,"per_page":2,"total_entries":5,"total_pages":3}}
@@ -1,20 +1,20 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Thu, 18 Jun 2020 18:54:17 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4800
7
- X-RateLimit-Remaining: 4799
8
- X-RateLimit-Reset: 1592510057
9
- ETag: W/"36ffdd6505ed488a3aeeaace031c5869"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: 4e99c95d-6d19-48ea-8d63-e68432631c90
12
- X-Runtime: 0.098745
13
- X-Frame-Options: DENY
14
- X-Content-Type-Options: nosniff
15
- X-XSS-Protection: 1; mode=block
16
- X-Download-Options: noopen
17
- X-Permitted-Cross-Domain-Policies: none
18
- Strict-Transport-Security: max-age=31536000
19
-
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Thu, 18 Jun 2020 18:54:17 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4800
7
+ x-ratelimit-remaining: 4799
8
+ x-ratelimit-reset: 1592510057
9
+ etag: W/"36ffdd6505ed488a3aeeaace031c5869"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: 4e99c95d-6d19-48ea-8d63-e68432631c90
12
+ x-runtime: 0.098745
13
+ x-frame-options: DENY
14
+ x-content-type-options: nosniff
15
+ x-xss-protection: 1; mode=block
16
+ x-download-options: noopen
17
+ x-permitted-cross-domain-policies: none
18
+ strict-transport-security: max-age=31536000
19
+
20
20
  {"data":{"id":101967,"certificate_id":101967,"state":"new","auto_renew":false,"created_at":"2020-06-18T18:54:17Z","updated_at":"2020-06-18T18:54:17Z"}}
@@ -1,20 +1,20 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Thu, 18 Jun 2020 19:56:20 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4800
7
- X-RateLimit-Remaining: 4799
8
- X-RateLimit-Reset: 1592513780
9
- ETag: W/"84dd908f85153590082766bd8d1f1056"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: f43f4d80-a7eb-43d3-b1ec-95eba413894e
12
- X-Runtime: 0.091216
13
- X-Frame-Options: DENY
14
- X-Content-Type-Options: nosniff
15
- X-XSS-Protection: 1; mode=block
16
- X-Download-Options: noopen
17
- X-Permitted-Cross-Domain-Policies: none
18
- Strict-Transport-Security: max-age=31536000
19
-
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Thu, 18 Jun 2020 19:56:20 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4800
7
+ x-ratelimit-remaining: 4799
8
+ x-ratelimit-reset: 1592513780
9
+ etag: W/"84dd908f85153590082766bd8d1f1056"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: f43f4d80-a7eb-43d3-b1ec-95eba413894e
12
+ x-runtime: 0.091216
13
+ x-frame-options: DENY
14
+ x-content-type-options: nosniff
15
+ x-xss-protection: 1; mode=block
16
+ x-download-options: noopen
17
+ x-permitted-cross-domain-policies: none
18
+ strict-transport-security: max-age=31536000
19
+
20
20
  {"data":{"id":65082,"old_certificate_id":101967,"new_certificate_id":101972,"state":"new","auto_renew":false,"created_at":"2020-06-18T19:56:20Z","updated_at":"2020-06-18T19:56:20Z"}}
@@ -1,18 +1,18 @@
1
1
  HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Wed, 23 Nov 2016 08:12:57 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 2400
7
- X-RateLimit-Remaining: 2396
8
- X-RateLimit-Reset: 1479892333
9
- Cache-Control: no-cache
10
- X-Request-Id: 91dcf81b-5df4-4d45-b37e-446f0c422a27
11
- X-Runtime: 0.062556
12
- X-Content-Type-Options: nosniff
13
- X-Download-Options: noopen
14
- X-Frame-Options: DENY
15
- X-Permitted-Cross-Domain-Policies: none
16
- X-XSS-Protection: 1; mode=block
2
+ server: nginx
3
+ date: Wed, 23 Nov 2016 08:12:57 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 2400
7
+ x-ratelimit-remaining: 2396
8
+ x-ratelimit-reset: 1479892333
9
+ cache-control: no-cache
10
+ x-request-id: 91dcf81b-5df4-4d45-b37e-446f0c422a27
11
+ x-runtime: 0.062556
12
+ x-content-type-options: nosniff
13
+ x-download-options: noopen
14
+ x-frame-options: DENY
15
+ x-permitted-cross-domain-policies: none
16
+ x-xss-protection: 1; mode=block
17
17
 
18
18
  {"message":"Invalid extended attributes","errors":{"x-accept-ssl-requirement": "it's required", "x-id-number": "invalid number"}}
@@ -1,20 +1,20 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Fri, 09 Dec 2016 19:35:38 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 2400
7
- X-RateLimit-Remaining: 2396
8
- X-RateLimit-Reset: 1481315246
9
- ETag: W/"440b25022ab55cd8e84be64356bfd7d9"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: aac22ee4-31d7-4d71-ad3d-d0004f5cf370
12
- X-Runtime: 11.906207
13
- X-Content-Type-Options: nosniff
14
- X-Download-Options: noopen
15
- X-Frame-Options: DENY
16
- X-Permitted-Cross-Domain-Policies: none
17
- X-XSS-Protection: 1; mode=block
18
- Strict-Transport-Security: max-age=31536000
19
-
20
- {"data":{"id":1,"domain_id":999,"registrant_id":2,"period":1,"state":"new","auto_renew":false,"whois_privacy":false,"created_at":"2016-12-09T19:35:31Z","updated_at":"2016-12-09T19:35:31Z"}}
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Fri, 09 Dec 2016 19:35:38 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 2400
7
+ x-ratelimit-remaining: 2396
8
+ x-ratelimit-reset: 1481315246
9
+ etag: W/"440b25022ab55cd8e84be64356bfd7d9"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: aac22ee4-31d7-4d71-ad3d-d0004f5cf370
12
+ x-runtime: 11.906207
13
+ x-content-type-options: nosniff
14
+ x-download-options: noopen
15
+ x-frame-options: DENY
16
+ x-permitted-cross-domain-policies: none
17
+ x-xss-protection: 1; mode=block
18
+ strict-transport-security: max-age=31536000
19
+
20
+ {"data":{"id":1,"domain_id":999,"registrant_id":2,"period":1,"state":"new","auto_renew":false,"whois_privacy":false,"created_at":"2016-12-09T19:35:31Z","updated_at":"2016-12-09T19:35:31Z"}}
@@ -1,17 +1,17 @@
1
1
  HTTP/1.1 204 No Content
2
- Server: nginx
3
- Date: Thu, 11 Aug 2016 10:24:54 GMT
4
- Connection: keep-alive
5
- X-RateLimit-Limit: 2400
6
- X-RateLimit-Remaining: 2391
7
- X-RateLimit-Reset: 1470913059
8
- Cache-Control: no-cache
9
- X-Request-Id: c0258478-1392-49b2-9b94-67b173acae12
10
- X-Runtime: 0.174739
11
- X-Content-Type-Options: nosniff
12
- X-Download-Options: noopen
13
- X-Frame-Options: DENY
14
- X-Permitted-Cross-Domain-Policies: none
15
- X-XSS-Protection: 1; mode=block
16
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Thu, 11 Aug 2016 10:24:54 GMT
4
+ connection: keep-alive
5
+ x-ratelimit-limit: 2400
6
+ x-ratelimit-remaining: 2391
7
+ x-ratelimit-reset: 1470913059
8
+ cache-control: no-cache
9
+ x-request-id: c0258478-1392-49b2-9b94-67b173acae12
10
+ x-runtime: 0.174739
11
+ x-content-type-options: nosniff
12
+ x-download-options: noopen
13
+ x-frame-options: DENY
14
+ x-permitted-cross-domain-policies: none
15
+ x-xss-protection: 1; mode=block
16
+ strict-transport-security: max-age=31536000
17
17
 
@@ -1,14 +1,14 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Mon, 15 Feb 2016 15:06:35 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- Status: 400 Bad Request
7
- X-RateLimit-Limit: 4000
8
- X-RateLimit-Remaining: 3998
9
- X-RateLimit-Reset: 1455552316
10
- Cache-Control: no-cache
11
- X-Request-Id: 0c1507d3-4c03-4ba3-b2bd-b0cabf021ed8
12
- X-Runtime: 0.256476
13
-
14
- {"message":"example.com may not be renewed at this time","errors":{}}
1
+ HTTP/1.1 400 Bad Request
2
+ server: nginx
3
+ date: Mon, 15 Feb 2016 15:06:35 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ status: 400 Bad Request
7
+ x-ratelimit-limit: 4000
8
+ x-ratelimit-remaining: 3998
9
+ x-ratelimit-reset: 1455552316
10
+ cache-control: no-cache
11
+ x-request-id: 0c1507d3-4c03-4ba3-b2bd-b0cabf021ed8
12
+ x-runtime: 0.256476
13
+
14
+ {"message":"example.com may not be renewed at this time","errors":{}}
@@ -1,20 +1,20 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Fri, 09 Dec 2016 19:46:57 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 2400
7
- X-RateLimit-Remaining: 2394
8
- X-RateLimit-Reset: 1481315245
9
- ETag: W/"179d85ea8a26a3d5dc76e42de2d7918e"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: ba6f2707-5df0-4ffa-b91b-51d4460bab8e
12
- X-Runtime: 13.571302
13
- X-Content-Type-Options: nosniff
14
- X-Download-Options: noopen
15
- X-Frame-Options: DENY
16
- X-Permitted-Cross-Domain-Policies: none
17
- X-XSS-Protection: 1; mode=block
18
- Strict-Transport-Security: max-age=31536000
19
-
20
- {"data":{"id":1,"domain_id":999,"period":1,"state":"new","created_at":"2016-12-09T19:46:45Z","updated_at":"2016-12-09T19:46:45Z"}}
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Fri, 09 Dec 2016 19:46:57 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 2400
7
+ x-ratelimit-remaining: 2394
8
+ x-ratelimit-reset: 1481315245
9
+ etag: W/"179d85ea8a26a3d5dc76e42de2d7918e"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: ba6f2707-5df0-4ffa-b91b-51d4460bab8e
12
+ x-runtime: 13.571302
13
+ x-content-type-options: nosniff
14
+ x-download-options: noopen
15
+ x-frame-options: DENY
16
+ x-permitted-cross-domain-policies: none
17
+ x-xss-protection: 1; mode=block
18
+ strict-transport-security: max-age=31536000
19
+
20
+ {"data":{"id":1,"domain_id":999,"period":1,"state":"new","created_at":"2016-12-09T19:46:45Z","updated_at":"2016-12-09T19:46:45Z"}}
@@ -1,15 +1,15 @@
1
1
  HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Fri, 18 Dec 2015 15:19:37 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 4000
7
- X-RateLimit-Remaining: 3991
8
- X-RateLimit-Reset: 1450451976
9
- ETag: W/"5ea6326bc1a8e83e5c156c564f2559f0"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: 15a7f3a5-7ee5-4e36-ac5a-8c21c2e1fffd
12
- X-Runtime: 0.141588
13
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Fri, 18 Dec 2015 15:19:37 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 4000
7
+ x-ratelimit-remaining: 3991
8
+ x-ratelimit-reset: 1450451976
9
+ etag: W/"5ea6326bc1a8e83e5c156c564f2559f0"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: 15a7f3a5-7ee5-4e36-ac5a-8c21c2e1fffd
12
+ x-runtime: 0.141588
13
+ strict-transport-security: max-age=31536000
14
14
 
15
15
  {"data":{"user":null,"account":null}}
@@ -1,19 +1,22 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Sun, 18 Feb 2024 10:46:17 GMT
4
- Content-Type: application/json
5
- Content-Length: 120
6
- Connection: keep-alive
7
- X-WORK-WITH-US: Love automation? So do we! https://dnsimple.com/jobs
8
- Cache-Control: no-cache
9
- X-Request-Id: 3bf33ae7-22f2-473c-8e39-8738d2bcce89
10
- X-Runtime: 0.006332
11
- X-Frame-Options: DENY
12
- X-Content-Type-Options: nosniff
13
- X-XSS-Protection: 1; mode=block
14
- X-Download-Options: noopen
15
- X-Permitted-Cross-Domain-Policies: none
16
- Content-Security-Policy: frame-ancestors 'none'
17
- Strict-Transport-Security: max-age=63072000
18
-
19
- {"data":{"id":43,"domain_id":214,"state":"new","created_at":"2024-02-14T14:40:42Z","updated_at":"2024-02-14T14:40:42Z"}}
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Sun, 18 Feb 2024 10:46:17 GMT
4
+ content-type: application/json
5
+ content-length: 120
6
+ connection: keep-alive
7
+ x-ratelimit-limit: 2400
8
+ x-ratelimit-remaining: 2398
9
+ x-ratelimit-reset: 1547125899
10
+ x-work-with-us: Love automation? So do we! https://dnsimple.com/jobs
11
+ cache-control: no-cache
12
+ x-request-id: 3bf33ae7-22f2-473c-8e39-8738d2bcce89
13
+ x-runtime: 0.006332
14
+ x-frame-options: DENY
15
+ x-content-type-options: nosniff
16
+ x-xss-protection: 1; mode=block
17
+ x-download-options: noopen
18
+ x-permitted-cross-domain-policies: none
19
+ content-security-policy: frame-ancestors 'none'
20
+ strict-transport-security: max-age=63072000
21
+
22
+ {"data":{"id":43,"domain_id":214,"state":"new","created_at":"2024-02-14T14:40:42Z","updated_at":"2024-02-14T14:40:42Z"}}
@@ -1,8 +1,8 @@
1
1
  HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Mon, 22 Dec 2014 14:16:12 GMT
4
- Content-Type: text/html
5
- Connection: close
2
+ server: nginx
3
+ date: Mon, 22 Dec 2014 14:16:12 GMT
4
+ content-type: text/html
5
+ connection: close
6
6
 
7
7
  <html>
8
8
  <head><title>200 OK</title></head>
@@ -1,14 +1,14 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Sun, 21 Feb 2016 13:11:54 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- Status: 400 Bad Request
7
- X-RateLimit-Limit: 4000
8
- X-RateLimit-Remaining: 3996
9
- X-RateLimit-Reset: 1456063541
10
- Cache-Control: no-cache
11
- X-Request-Id: 15d2e302-e835-4dda-9652-03d8962280ae
12
- X-Runtime: 0.994068
13
-
1
+ HTTP/1.1 400 Bad Request
2
+ server: nginx
3
+ date: Sun, 21 Feb 2016 13:11:54 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ status: 400 Bad Request
7
+ x-ratelimit-limit: 4000
8
+ x-ratelimit-remaining: 3996
9
+ x-ratelimit-reset: 1456063541
10
+ cache-control: no-cache
11
+ x-request-id: 15d2e302-e835-4dda-9652-03d8962280ae
12
+ x-runtime: 0.994068
13
+
14
14
  {"message":"The domain google.com is already in DNSimple and cannot be added"}
@@ -1,14 +1,14 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: nginx
3
- Date: Sun, 21 Feb 2016 13:11:11 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- Status: 400 Bad Request
7
- X-RateLimit-Limit: 4000
8
- X-RateLimit-Remaining: 3997
9
- X-RateLimit-Reset: 1456063540
10
- Cache-Control: no-cache
11
- X-Request-Id: d7a0eb63-77eb-4488-bc55-c129ed8fe192
12
- X-Runtime: 11.912567
13
-
1
+ HTTP/1.1 400 Bad Request
2
+ server: nginx
3
+ date: Sun, 21 Feb 2016 13:11:11 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ status: 400 Bad Request
7
+ x-ratelimit-limit: 4000
8
+ x-ratelimit-remaining: 3997
9
+ x-ratelimit-reset: 1456063540
10
+ cache-control: no-cache
11
+ x-request-id: d7a0eb63-77eb-4488-bc55-c129ed8fe192
12
+ x-runtime: 11.912567
13
+
14
14
  {"message":"Validation failed","errors":{"base":["You must provide an authorization code for the domain"]}}
@@ -1,20 +1,20 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Fri, 09 Dec 2016 19:43:43 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 2400
7
- X-RateLimit-Remaining: 2395
8
- X-RateLimit-Reset: 1481315246
9
- ETag: W/"e58e7ac3ad9e30162c5098f29f208066"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: 0d00c622-9fc8-406a-93cb-d2c5d6ecd6b4
12
- X-Runtime: 6.483160
13
- X-Content-Type-Options: nosniff
14
- X-Download-Options: noopen
15
- X-Frame-Options: DENY
16
- X-Permitted-Cross-Domain-Policies: none
17
- X-XSS-Protection: 1; mode=block
18
- Strict-Transport-Security: max-age=31536000
19
-
20
- {"data":{"id":1,"domain_id":999,"registrant_id":2,"state":"transferring","auto_renew":false,"whois_privacy":false,"created_at":"2016-12-09T19:43:41Z","updated_at":"2016-12-09T19:43:43Z"}}
1
+ HTTP/1.1 201 Created
2
+ server: nginx
3
+ date: Fri, 09 Dec 2016 19:43:43 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 2400
7
+ x-ratelimit-remaining: 2395
8
+ x-ratelimit-reset: 1481315246
9
+ etag: W/"e58e7ac3ad9e30162c5098f29f208066"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: 0d00c622-9fc8-406a-93cb-d2c5d6ecd6b4
12
+ x-runtime: 6.483160
13
+ x-content-type-options: nosniff
14
+ x-download-options: noopen
15
+ x-frame-options: DENY
16
+ x-permitted-cross-domain-policies: none
17
+ x-xss-protection: 1; mode=block
18
+ strict-transport-security: max-age=31536000
19
+
20
+ {"data":{"id":1,"domain_id":999,"registrant_id":2,"state":"transferring","auto_renew":false,"whois_privacy":false,"created_at":"2016-12-09T19:43:41Z","updated_at":"2016-12-09T19:43:43Z"}}
@@ -1,17 +1,17 @@
1
1
  HTTP/1.1 204 No Content
2
- Server: nginx
3
- Date: Sat, 09 Jul 2016 11:13:48 GMT
4
- Connection: keep-alive
5
- X-RateLimit-Limit: 2400
6
- X-RateLimit-Remaining: 2397
7
- X-RateLimit-Reset: 1468066326
8
- Cache-Control: no-cache
9
- X-Request-Id: bb164b01-636a-4d02-acb5-a829afc5ea8c
10
- X-Runtime: 0.070508
11
- X-Content-Type-Options: nosniff
12
- X-Download-Options: noopen
13
- X-Frame-Options: DENY
14
- X-Permitted-Cross-Domain-Policies: none
15
- X-XSS-Protection: 1; mode=block
16
- Strict-Transport-Security: max-age=31536000
2
+ server: nginx
3
+ date: Sat, 09 Jul 2016 11:13:48 GMT
4
+ connection: keep-alive
5
+ x-ratelimit-limit: 2400
6
+ x-ratelimit-remaining: 2397
7
+ x-ratelimit-reset: 1468066326
8
+ cache-control: no-cache
9
+ x-request-id: bb164b01-636a-4d02-acb5-a829afc5ea8c
10
+ x-runtime: 0.070508
11
+ x-content-type-options: nosniff
12
+ x-download-options: noopen
13
+ x-frame-options: DENY
14
+ x-permitted-cross-domain-policies: none
15
+ x-xss-protection: 1; mode=block
16
+ strict-transport-security: max-age=31536000
17
17
 
@@ -1,21 +1,21 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx
3
- Date: Wed, 17 Mar 2021 23:36:43 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Connection: keep-alive
6
- X-RateLimit-Limit: 2400
7
- X-RateLimit-Remaining: 2383
8
- X-RateLimit-Reset: 1616024599
9
- ETag: W/"ceda02163217bdb9e6850e2c36cbf163"
10
- Cache-Control: max-age=0, private, must-revalidate
11
- X-Request-Id: 789c6feb-63e1-40d6-b2b6-f569b23a507c
12
- X-Runtime: 0.270968
13
- X-Frame-Options: DENY
14
- X-Content-Type-Options: nosniff
15
- X-XSS-Protection: 1; mode=block
16
- X-Download-Options: noopen
17
- X-Permitted-Cross-Domain-Policies: none
18
- Content-Security-Policy: frame-ancestors 'none'
19
- Strict-Transport-Security: max-age=31536000
20
-
1
+ HTTP/1.1 200 OK
2
+ server: nginx
3
+ date: Wed, 17 Mar 2021 23:36:43 GMT
4
+ content-type: application/json; charset=utf-8
5
+ connection: keep-alive
6
+ x-ratelimit-limit: 2400
7
+ x-ratelimit-remaining: 2383
8
+ x-ratelimit-reset: 1616024599
9
+ etag: W/"ceda02163217bdb9e6850e2c36cbf163"
10
+ cache-control: max-age=0, private, must-revalidate
11
+ x-request-id: 789c6feb-63e1-40d6-b2b6-f569b23a507c
12
+ x-runtime: 0.270968
13
+ x-frame-options: DENY
14
+ x-content-type-options: nosniff
15
+ x-xss-protection: 1; mode=block
16
+ x-download-options: noopen
17
+ x-permitted-cross-domain-policies: none
18
+ content-security-policy: frame-ancestors 'none'
19
+ strict-transport-security: max-age=31536000
20
+
21
21
  {"data":{"id":4,"account_id":531,"name":"PrimaryProduction","ip":"1.2.3.4","port":53,"linked_secondary_zones":[],"created_at":"2021-03-17T23:08:42Z","updated_at":"2021-03-17T23:08:42Z"}}