{"info":{"_postman_id":"8c8e6d1a-e7f1-44a1-ad9f-b3eefab2866d","name":"DNS Made Easy API","description":"<html><head></head><body><p>REST endpoints for integration and development with the DNS Made Easy services.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"2332746","collectionId":"8c8e6d1a-e7f1-44a1-ad9f-b3eefab2866d","publishedId":"Rzfaqr4K","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-11-25T16:20:12.000Z"},"item":[{"name":"Overview","item":[{"name":"Making A Request","item":[],"id":"8d62b47b-ace8-4843-b39a-caf70c9803af","description":"<p>REST requests can be made via HTTPS or HTTP by using the headers, authentication, data types, and methods specified below. The current endpoint for API V2.0 is\navailable at:\n<b>http[s]://api.dnsmadeeasy.com/V2.0/</b></p>\n","_postman_id":"8d62b47b-ace8-4843-b39a-caf70c9803af"},{"name":"The Sandbox","item":[],"id":"77e8a3aa-620b-4cfb-9565-f58ee3ad5e11","description":"<p>The sandbox is available as a non-production environment to test API calls and any code developed to run on top of the API. A sandbox account is completely independent from a production account in DNS Made Easy and has different API\nkeys. </p>\n<p><a href=\"https://sandbox.dnsmadeeasy.com/account/new\">Create Sandbox Account</a></p>\n<p>The current endpoint for the sandbox API is available at:\n<b>http[s]://api.sandbox.dnsmadeeasy.com/V2.0/</b></p>\n","_postman_id":"77e8a3aa-620b-4cfb-9565-f58ee3ad5e11"},{"name":"Rate Limiting","item":[],"id":"f6f3c489-422d-4cf0-bccb-1933e6d655ac","description":"<p>To prevent unwanted flooding of the API system, there is a maximum number of requests that can be sent in a given time period. This limit is 150 requests per 5 minute scrolling window. For example, 100 requests could be made in one minute, followed by a 5 minute wait, following by 150 requests. </p>\n<p>This limit is tracked per API key and all requests count toward this limit. Refer to the <i>x-dnsme-requestLimit</i> and <i>xdnsme-requestsRemaining</i> header fields for values related to this limit.</p>\n","_postman_id":"f6f3c489-422d-4cf0-bccb-1933e6d655ac"},{"name":"Supported Data Formats","item":[],"id":"4e7f2b24-e72b-4f07-b9ea-61469d4894e6","description":"<p>The DNS Made Easy API supports both XML and JSON data formats, specified by using the content-type and accept HTTP header fields. If no format is specified, JSON\nwill be used as the default.</p>\n","_postman_id":"4e7f2b24-e72b-4f07-b9ea-61469d4894e6"},{"name":"Authentication","item":[],"id":"5b98221f-37e9-4845-a349-5e959241b4a5","description":"<p>Authentication with the DNS Made Easy API is done using the API and Secret keys, given on a per-account basis. The values for these keys can be found on the Config -\nAccount Information page once logged into your DNS Made Easy account. To make an authenticated request, follow these steps:</p>\n<p>• Create the string representation of the current UTC date and time in HTTP format. Example: Sat, 12 Feb 2011 20:59:04 GMT</p>\n<p>• Calculate the hexadecimal HMAC SHA1 hash of that string using your Secret key as the hash key. Example:\nb3502e6116a324f3cf4a8ed693d78bcee8d8fe3c</p>\n<p>• Set the values for the request headers using your API key, the current date and time, and the HMAC hash that you calculated. This example was created using a Secret key of c9b5625f-9834-4ff8-baba-4ed5f32cae55:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-dnsme-apiKey:1c1a3c91-4770-4ce7-96f4-54c0eb0e457a\nx-dnsme-requestDate:Sat, 12 Feb 2011 20:59:04 GMT\nx-dnsme-hmac:b3502e6116a324f3cf4a8ed693d78bcee8d8fe3c\n</code></pre><p>• Requests must be sent shortly after these headers are generated. If too much time has passed between when the <i>x-dnsme-requestDate</i> and <i>x-dnsme-hmac</i> strings were created and when the request is received by the DNS Made Easy API servers, then the request will be denied.</p>\n<p>• Requests made with invalid credentials or an invalid x-dnsme-requestDate value will receive an <b>HTTP 403 – Forbidden response</b>.</p>\n","_postman_id":"5b98221f-37e9-4845-a349-5e959241b4a5"},{"name":"Header Fields","item":[],"id":"035a22b2-f9df-40e2-af3b-4d5ccf60e14e","description":"<table>\n<tr>\n<th>Request Header Fields</th>\n</tr>\n<tr>\n<td><i>x-dnsme-apiKey</i></td>\n<td>The API Key for your account. Refer to\nthe Config – Account Information menu once logged in to find this value.</td>\n</tr>\n<tr>\n<td><i>x-dnsme-requestDate</i></td>\n<td>Standard HTTP-formatted date. This date is used to protect against falsified requests played back at a future time.</td>\n</tr>\n<tr>\n<td><i>x-dnsme-hmac</i></td>\n<td>HMAC hash of value of the x-dnsmerequestDate\nfield. Refer to the DNS Made Easy REST API Documentation v2.0 Authentication section for more details on how to generate this value.</td>\n</tr>\n<tr>\n<th>Response Header Fields</th>\n</tr>\n<tr>\n<td><i>x-dnsme-requestId</i></td>\n<td>A unique identifier of the API call that was sent. Use the value of this header to help identify your request for your own purposes or when contacting DNS Made Easy support.</td>\n</tr>\n<tr>\n<td><i>x-dnsme-requestLimit</i></td>\n<td>Maximum number of requests that can\nbe sent before the rate limit is exceeded.</td>\n</tr>\n<tr>\n<td><i>x-dnsmerequestsRemaining</i></td>\n<td>Number of requests remaining before the rate limit is exceeded.</td>\n</tr>\n</table>","_postman_id":"035a22b2-f9df-40e2-af3b-4d5ccf60e14e"},{"name":"Getting Started Guide","item":[],"id":"610fa68f-929f-4e25-a1ae-d281fe1eecff","description":"<p>If you’d like to make an API request, just follow these steps. We’ve provided a sample Perl script that can be used to make requests.</p>\n<p>• Download and install cURL. Make sure that the cURL executable is part of your path.\n• Download and install Perl. Make sure that the Perl executable is part of your path.\n• Download the necessary Perl extensions by running the following commands:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>perl -MCPAN -e \"install Digest::HMAC_SHA1\"\nperl -MCPAN -e \"install HTTP::Date\"\nperl -MCPAN -e \"install Config::Properties\"\n</code></pre><p>• Download the following DNS Made Easy files and save them into the same location:</p>\n<p><a href=\"https://support.dnsmadeeasy.com/support/solutions/articles/47001129905-dnsmeapi-properties\">dnsmeapi.properties</a></p>\n<p><a href=\"https://support.dnsmadeeasy.com/support/solutions/articles/47001129904-dnsmeapi-pl\">dnsmeapi.pl</a></p>\n<p>• Put your API and Secret Keys into the dnsmeapi.properties file, the location of these keys is specified below in the Authentication section.</p>\n<p>• Make requests using the dnsmeapi.pl script as a wrapper around cURL! For example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>perl dnsmeapi.pl https://api.dnsmadeeasy.com/V2.0/dns/managed/ -H accept:application/xml\nperl dnsmeapi.pl https://api.dnsmadeeasy.com/V2.0/dns/managed/12345 -X\nperl dnsmeapi.pl http://api.dnsmadeeasy.com/V2.0/dns/managed/12345/records -H accept:application/json\n</code></pre><p>• cURL accepts the -X option to set the HTTP method used for the request (GET is used if no method is specified). cURL accepts the –H option to set HTTP headers for the\nrequest.</p>\n","event":[{"listen":"prerequest","script":{"id":"27a40287-fb34-4394-adca-e0f8faa33ec0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"04a36067-2a76-41e6-a4d2-3c40a8ea3868","type":"text/javascript","exec":[""]}}],"_postman_id":"610fa68f-929f-4e25-a1ae-d281fe1eecff"}],"id":"530f2ac5-f8c4-4e88-b510-a2f26818ab7a","description":"<p>Welcome to the DNS Made Easy Developer API! Whether you’re an API pro, a beginning developer, our extensive API documentation will guide you in developing code on top of DNS Made Easy REST API platform. Our API suite allows you to query for domains, DNS records and much more. The document below will allow you to browse API call options, descriptions of the available attributes, and see examples of working requests and responses. If this is your first time using our API, please check out our Getting Started guide. </p>\n","_postman_id":"530f2ac5-f8c4-4e88-b510-a2f26818ab7a"},{"name":"API Calls","item":[{"name":"Managed Single Domain Actions","item":[{"name":"Single Domain GET","event":[{"listen":"prerequest","script":{"id":"d23b4785-6676-4765-a1db-e863e6c74e3b","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"6a7eef29-27fb-4f37-af89-e3ec4a3dcf66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443","description":"<p>Return information about a domain name where domainId equals 1119443.</p>\n","urlObject":{"path":["dns","managed","1119443"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"d058f75e-234c-4b81-942d-d6cef22c0519","name":"Single Domain GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 11 Sep 2017 15:27:07 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=F41CC5FB79F33C7C257AD52C5B40A218; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"a81a790a-215c-48bf-b0a1-eff523b0e8dc","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"149","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"F41CC5FB79F33C7C257AD52C5B40A218","key":"JSESSIONID"}],"responseTime":"203","body":"{\n    \"delegateNameServers\": [\n        \"ns1.namefind.com.\",\n        \"ns2.namefind.com.\"\n    ],\n    \"nameServers\": [\n        {\n            \"ipv6\": \"2600:1800:0::1\",\n            \"ipv4\": \"208.94.148.2\",\n            \"fqdn\": \"ns0.dnsmadeeasy.com\"\n        },\n        {\n            \"ipv6\": \"2600:1801:1::1\",\n            \"ipv4\": \"208.80.124.2\",\n            \"fqdn\": \"ns1.dnsmadeeasy.com\"\n        },\n        {\n            \"ipv6\": \"2600:1802:2::1\",\n            \"ipv4\": \"208.80.126.2\",\n            \"fqdn\": \"ns2.dnsmadeeasy.com\"\n        },\n        {\n            \"ipv6\": \"2600:1801:3::1\",\n            \"ipv4\": \"208.80.125.2\",\n            \"fqdn\": \"ns3.dnsmadeeasy.com\"\n        },\n        {\n            \"ipv6\": \"2600:1802:4::1\",\n            \"ipv4\": \"208.80.127.2\",\n            \"fqdn\": \"ns4.dnsmadeeasy.com\"\n        }\n    ],\n    \"updated\": 1504807431610,\n    \"processMulti\": false,\n    \"activeThirdParties\": [],\n    \"created\": 1398384000000,\n    \"pendingActionId\": 0,\n    \"name\": \"exampledomain.com\",\n    \"id\": 1119443\n}"}],"_postman_id":"6a7eef29-27fb-4f37-af89-e3ec4a3dcf66"},{"name":"Single Domain Update","event":[{"listen":"prerequest","script":{"id":"9c3071cc-5247-4518-a284-51769bd90b57","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"fdb7704b-8176-4e0f-b0c4-b15952969fdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n            \"processMulti\": false,\n            \"activeThirdParties\": [],\n            \"created\": 1601942400000,\n            \"folderId\": 149146,\n            \"gtdEnabled\": true,\n            \"pendingActionId\": 0,\n            \"name\": \"testing098.com\",\n            \"id\": 7333073\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7333073","description":"<p>Updates a domain name where domainId equals 7333073 assigning a vanity configuration, template, or custom SOA record.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","7333073"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"695b4ce7-a179-43e7-8824-31fd81064445","name":"Single Domain Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\n            \"processMulti\": false,\n            \"activeThirdParties\": [],\n            \"created\": 1601942400000,\n            \"folderId\": 149146,\n            \"gtdEnabled\": true,\n            \"pendingActionId\": 0,\n            \"name\": \"testing098.com\",\n            \"id\": 7333073\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7333073"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Feb 2021 21:48:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"0624d3ca-2d6c-43fa-8984-636b6bf270cb"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=4AD2592C693C3BBF287E8826B0CD9792; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fdb7704b-8176-4e0f-b0c4-b15952969fdd"},{"name":"Single Domain Create","event":[{"listen":"prerequest","script":{"id":"8897a2fb-ff56-45c5-8b2a-1a82f52acec7","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"e9b544c1-fbcf-4573-9073-301bfe876683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"exampledomain1.com\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Creates a new domain name, returning its associated domain ID.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"84550e64-e9ff-45d3-9515-10fc55ca94df","name":"Single Domain Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\"name\":\"exampledomain1.com\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 15:41:44 GMT"},{"description":"","key":"Location","name":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/5940367"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=B072CE5E6E6BC72DD0BF6FC442064FEA; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"c5f4c583-cc85-4d28-a436-70996e48a3f1"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"147"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"B072CE5E6E6BC72DD0BF6FC442064FEA","key":"JSESSIONID"}],"responseTime":"462","body":"{\"created\":1520294400000,\"folderId\":18954,\"gtdEnabled\":false,\"nameServers\":[{\"ipv6\":\"2600:1800:0::1\",\"ipv4\":\"208.94.148.2\",\"fqdn\":\"ns0.dnsmadeeasy.com\"},{\"ipv6\":\"2600:1801:1::1\",\"ipv4\":\"208.80.124.2\",\"fqdn\":\"ns1.dnsmadeeasy.com\"},{\"ipv6\":\"2600:1802:2::1\",\"ipv4\":\"208.80.126.2\",\"fqdn\":\"ns2.dnsmadeeasy.com\"},{\"ipv6\":\"2600:1801:3::1\",\"ipv4\":\"208.80.125.2\",\"fqdn\":\"ns3.dnsmadeeasy.com\"},{\"ipv6\":\"2600:1802:4::1\",\"ipv4\":\"208.80.127.2\",\"fqdn\":\"ns4.dnsmadeeasy.com\"}],\"updated\":1520350904465,\"processMulti\":false,\"activeThirdParties\":[],\"pendingActionId\":1,\"name\":\"exampledomain1.com\",\"id\":5940367}"}],"_postman_id":"e9b544c1-fbcf-4573-9073-301bfe876683"},{"name":"Single Domain Delete","event":[{"listen":"prerequest","script":{"id":"0ae08add-f59d-493f-93b1-424d05981f73","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );","",""],"type":"text/javascript"}}],"id":"4f66b783-371f-4ce0-9cc3-d432c449eb09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7333073","description":"<p>Deletes a single domain where domainId equals 7333073.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","7333073"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"0600c13b-0534-4ea7-958e-5833346fe5b5","name":"Single Domain Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7333073"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Feb 2021 22:38:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"fc034c06-c9e9-49c6-84a0-7935cc8be4f1"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=FFD8E440027C440465528459CC6BDB0F; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4f66b783-371f-4ce0-9cc3-d432c449eb09"}],"id":"af0d807d-8875-41d0-bc38-e3f17dd8f477","description":"<p>The <i>dns/managed/</i> data type contains information about a single domain. The following fields are available:</p>\n<table>\n<tr>\n<th><i>/dns/managed/</i></th>\n</tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>The domain name</td>\n</tr>\n<tr>\n<td>id</td> \n<td>numeric</td>\n<td>The domain ID</td>\n</tr>\n<tr>\n<td>nameServers</td>\n<td>List of Strings</td>\n<td>Name servers assigned to the domain by DNS Made Easy (System defined, unless vanity is applied)</td>\n</tr>\n<tr>\n<td>gtdEnabled</td>\n<td>boolean</td>\n<td>Indicator of whether or not this domain uses the Global Traffic Director service</td>\n</tr>\n<tr>\n<td>soaID</td>\n<td>numeric</td>\n<td>The ID of a custom SOA record</td>\n</tr>\n<tr>\n<td>templateId</td>\n<td>numeric</td>\n<td>The ID of a template applied to the domain</td>\n</tr>\n<tr>\n<td>vanityId</td>\n<td>numeric</td>\n<td>The ID of a vanity DNS configuration</td>\n</tr>\n<tr>\n<td>transferAclId</td>\n<td>numeric</td>\n<td>The ID of an applied transfer ACL</td>\n</tr>\n<tr>\n<td>folderId</td>\n<td>numeric</td>\n<td>The ID of a domain folder</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>numeric</td>\n<td>The number of seconds since the domain\nwas last updated in Epoch time</td>\n</tr>\n<tr>\n<td>created</td>\n<td>numeric</td>\n<td>The number of seconds since the domain\nwas last created in Epoch time</td>\n</tr>\n<tr>\n<td>axfrServer</td>\n<td>List of Strings</td>\n<td>The list of servers defined in an applied AXFR ACL.</td>\n</tr>\n<tr>\n<td>delegateNameServers</td>\n<td>List of Strings</td>\n<td>The name servers assigned to the domain at the registrar</td>\n</tr>\n</table>","_postman_id":"af0d807d-8875-41d0-bc38-e3f17dd8f477"},{"name":"Contact List","item":[{"name":"Create Contact List","event":[{"listen":"prerequest","script":{"id":"1dbb97c6-897d-47f5-ad59-0d9cd8376faf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"20ea5f95-999b-4719-8d73-ce31951f4f94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\" : \"api_test\",\n\t\"emails\" : [{\"email\" : \"dnsmadeeasy8@gmail.com\"}, {\"email\" : \"dnsmadeeasy9@gmail.com\"}],\n\t\"groups\" : []\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/contactList","description":"<p>Creates a new contact list, returning its associated ID.</p>\n","urlObject":{"path":["contactList"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"6b14427e-5733-4783-887d-c6d814663060","name":"Create Contact List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\n        \"emails\": [\n            {\n                \"email\": \"dnsmadeeasy8@gmail.com\"\n            },\n            {\n                \"email\": \"dnsmadeeasy9@gmail.com\"\n            }\n        ],\n        \"groups\": [],\n        \"name\": \"api_test+12\"\n        \n    }","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/contactList"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Feb 2021 23:35:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"55a974bf-6f29-404c-b47f-0824a9a45e0f"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=7B1F77E33128B2A010F115276B8FF975; Path=/V2.0; HttpOnly"},{"key":"Location","value":"http://api.dnsmadeeasy.com/V2.0/contactList/34024"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"emails\": [\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy9@gmail.com\"\n        },\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy8@gmail.com\"\n        }\n    ],\n    \"groups\": [],\n    \"name\": \"api_test+12\",\n    \"id\": 34024\n}"}],"_postman_id":"20ea5f95-999b-4719-8d73-ce31951f4f94"},{"name":"Get All Contact Lists","event":[{"listen":"prerequest","script":{"id":"1dbb97c6-897d-47f5-ad59-0d9cd8376faf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"725c6b2b-6770-47e9-85e0-f2695859c4d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/getAll","description":"<p>Returns all configured Contact Lists in the account along with their associated IDs. </p>\n","urlObject":{"path":["contactList","getAll"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"2bd392ad-e760-41d8-8126-38347bb0231b","name":"Get All Contact Lists","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/getAll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Feb 2021 21:36:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"612545d6-9d1a-46cd-a01e-a1ff7e965189"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=37ED3C000B4E09302AC257342E13CCB3; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"emails\": [\n            {\n                \"confirmed\": false,\n                \"email\": \"dnsmadeeasy9@gmail.com\"\n            },\n            {\n                \"confirmed\": false,\n                \"email\": \"dnsmadeeasy8@gmail.com\"\n            }\n        ],\n        \"groups\": [],\n        \"name\": \"api_test2\",\n        \"id\": 34135\n    },\n    {\n        \"emails\": [\n            {\n                \"confirmed\": false,\n                \"email\": \"dnsmadeeasy9@gmail.com\"\n            },\n            {\n                \"confirmed\": false,\n                \"email\": \"dnsmadeeasy8@gmail.com\"\n            }\n        ],\n        \"groups\": [],\n        \"name\": \"api_test+11\",\n        \"id\": 34023\n    }\n]"}],"_postman_id":"725c6b2b-6770-47e9-85e0-f2695859c4d3"},{"name":"Get Contact List","event":[{"listen":"prerequest","script":{"id":"1dbb97c6-897d-47f5-ad59-0d9cd8376faf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"aeaa562b-f562-4e87-bf19-62203b886452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/34135","description":"<p>Get one Contact List by specifying it's associated ID in the URL of the call</p>\n","urlObject":{"path":["contactList","34135"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"7ee80d85-4900-4788-89c5-dca6fae15538","name":"Get Contact List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/34135"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Feb 2021 22:19:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"68a7e404-d7a7-4466-beef-c25be56ee95a"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=AEF0A9A1CCEFF04820DE735A90DB19F6; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"emails\": [\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy9@gmail.com\"\n        },\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy8@gmail.com\"\n        }\n    ],\n    \"groups\": [],\n    \"name\": \"api_test2\",\n    \"id\": 34135\n}"}],"_postman_id":"aeaa562b-f562-4e87-bf19-62203b886452"},{"name":"Add Emails to Contact List","event":[{"listen":"prerequest","script":{"id":"1dbb97c6-897d-47f5-ad59-0d9cd8376faf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"79029aaa-28bf-4397-9c49-93a2bb58a4c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"[\"dnsmadeeasy8@gmail.com\"]","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/addEmails/34135","description":"<p>Creates a new domain name, returning its associated domain ID.</p>\n","urlObject":{"path":["contactList","addEmails","34135"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"dcb2e994-735a-435a-8fa1-f322662d99d1","name":"Add Emails to Contact List","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"[\"dnsmadeeasy8@gmail.com\"]","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/addEmails/34135"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 01 Mar 2021 23:51:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"2f0d4100-987b-407d-b49c-f44ecb81999d"},{"key":"x-dnsme-requestsRemaining","value":"142"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=5A086CB7851DC4F4942280F1D6C89E0E; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"emails\": [\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy9@gmail.com\"\n        },\n        {\n            \"confirmed\": false,\n            \"email\": \"dnsmadeeasy8@gmail.com\"\n        }\n    ],\n    \"groups\": [],\n    \"name\": \"api_test2\",\n    \"id\": 34135\n}"}],"_postman_id":"79029aaa-28bf-4397-9c49-93a2bb58a4c3"},{"name":"Delete Contact List","event":[{"listen":"prerequest","script":{"id":"1dbb97c6-897d-47f5-ad59-0d9cd8376faf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"3d9c4435-74e7-4409-802a-17dfca36a605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/34024","description":"<p>Creates a new domain name, returning its associated domain ID.</p>\n","urlObject":{"path":["contactList","34024"],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"aa4cd875-32ba-42c1-a27c-eab56bfb6caf","name":"Delete Contact List","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/contactList/34024"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Feb 2021 21:32:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"ba033de2-b4b8-4a07-a88e-fed96c5116b8"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=E43433B86EB22BBA6BE4CD8F4D6B1721; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3d9c4435-74e7-4409-802a-17dfca36a605"}],"id":"68ab3611-4c4d-40a0-8ac8-33fe21ddaa65","description":"<p>The <i>/contactList/</i> data type contains information about a single contact list. The following fields are available:</p>\n<table>\n<tr>\n<th><i>/contactList/</i></th>\n</tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>name of contact list</td>\n</tr>\n<tr>\n<td>id</td> \n<td>numeric</td>\n<td>contact list ID</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Numeric</td>\n<td>Contact groups that contact list is assigned to</td>\n</tr>\n<tr>\n<td>confirmed</td>\n<td>String</td>\n<td>Indicates if the email address has been confirmed in our system</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>email address in the contact list</td>\n</tr>\n</table>","_postman_id":"68ab3611-4c4d-40a0-8ac8-33fe21ddaa65"},{"name":"Managed DNS Multi Domain Actions","item":[{"name":"Multi Domain GET","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"bdf8838d-c722-4355-951f-b13049604d0c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":""}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Returns all domains in the account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"6244c9d3-5e10-4dfb-88f3-0c6d5f4f57de","name":"Multi Domain GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 15:53:31 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=51C0FF1A08F94E2B2006360949B9AB5D; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"29f8ca77-4762-4c66-8039-e76b30e34603"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"145"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"51C0FF1A08F94E2B2006360949B9AB5D","key":"JSESSIONID"}],"responseTime":"121","body":"{\"totalRecords\":3,\"totalPages\":1,\"data\":[{\"created\":1520294400000,\"folderId\":18954,\"gtdEnabled\":false,\"updated\":1520350904465,\"processMulti\":false,\"activeThirdParties\":[],\"pendingActionId\":0,\"name\":\"exampledomain1.com\",\"id\":5940367},{\"created\":1520294400000,\"folderId\":18954,\"gtdEnabled\":false,\"updated\":1520350963956,\"processMulti\":false,\"activeThirdParties\":[],\"pendingActionId\":3,\"name\":\"exampledomain2.com\",\"id\":5940376},{\"created\":1398384000000,\"folderId\":18954,\"gtdEnabled\":false,\"updated\":1520350788345,\"processMulti\":false,\"activeThirdParties\":[],\"pendingActionId\":0,\"vanityId\":16501,\"name\":\"exampledomain.com\",\"id\":1119443}],\"page\":0}"}],"_postman_id":"bdf8838d-c722-4355-951f-b13049604d0c"},{"name":"Multi Domain Update","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"d9b03380-f356-4dba-b08f-800a8c4e43b7","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":""}],"body":{"mode":"raw","raw":"{\"ids\":[\"5839107\",\"1119443\"],\"vanityId\":\"16501\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Updates multiple domains where domainId's equal 5839107 and 1119443 with the same action such as assigning a vanity configuration, template, or custom SOA record.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"dc8cd4de-5a1e-4ddc-8c57-3c24f75b36a9","name":"Multi Domain Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\"ids\":[\"5940367\",\"1119443\"],\"vanityId\":\"16501\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Length","name":"Content-Length","value":"0"},{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 15:54:28 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=4E553D6D3EE1701CAB685E7E12065726; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"b2d119c2-77ba-4494-b0bf-32b43241c4bd"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"145"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"4E553D6D3EE1701CAB685E7E12065726","key":"JSESSIONID"}],"responseTime":"550","body":""}],"_postman_id":"d9b03380-f356-4dba-b08f-800a8c4e43b7"},{"name":"Multi Domain Create","event":[{"listen":"prerequest","script":{"id":"b1b5c95f-1b0f-475b-8276-0a04fb5b1ff1","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"685430de-932c-493c-8b95-f00c2a65a4ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example1000.com\",\"example2000.com\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Creates multiple domain names where the created domains are example1000.com and example2000.com, returning all associated domain ID's.</p>\n","urlObject":{"path":["dns","managed",""],"host":["https://api.dnsmadeeasy.com/V2.0"],"query":[],"variable":[]}},"response":[{"id":"a1f3b479-748c-4ed9-b233-e9661e3fdac2","name":"Multi Domain Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example1000.com\",\"example2000.com\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 15:55:08 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=7E7416D5D3B5B439FA82E4C91DCF555C; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"cadd8a08-5320-47d5-87e5-a1d881150008","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"7E7416D5D3B5B439FA82E4C91DCF555C","key":"JSESSIONID"}],"responseTime":"400","body":"[5940380,5940369]"}],"_postman_id":"685430de-932c-493c-8b95-f00c2a65a4ea"},{"name":"Mutli Domain Delete","event":[{"listen":"prerequest","script":{"id":"da255540-9927-4705-a620-6391c2aaa697","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"ca9a69d9-4e45-47d3-b3fa-4cb77f5daabf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"[5940369,5940380]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Deletes multiple domains where domainId's equal 5940369 and 5940380</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"4cf44302-f78b-4319-81f4-1351c1948681","name":"Mutli Domain Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"[5940369,5940380]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:05:06 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=CA9A09797C2CD7B04E7A71534475E5AE; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"9d811fdb-8609-4b4c-b1ab-9711ab62e9f5","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"149","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"CA9A09797C2CD7B04E7A71534475E5AE","key":"JSESSIONID"}],"responseTime":"548","body":""}],"_postman_id":"ca9a69d9-4e45-47d3-b3fa-4cb77f5daabf"}],"id":"943f2ed9-1f78-4307-be0c-4cf16de1eb75","description":"<p>The following calls would be used to perform a single action on many domains at once, such as creation or deletion. In addition to the available fields from\n<i>/dns/managed</i> data type, the following fields are also available for multi-domain actions:</p>\n<table>\n<tr>\n<th><i>/dns/managed</i></th>\n</tr><tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>names</td>\n<td>List of Strings</td>\n<td>List of domain names</td>\n</tr>\n<tr>\n<td>ids</td>\n<td>List of numbers</td>\n<td>List of domain identifiers</td>\n</tr>\n</table>","_postman_id":"943f2ed9-1f78-4307-be0c-4cf16de1eb75"},{"name":"Managed DNS Record Actions","item":[{"name":"Record GET","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"ae20deac-3681-48fd-a8ee-aca15d0edafd","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records","description":"<p>Return all records within a domain where the associated domainId is 1119443.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"78189aad-d913-4f36-8197-5c2570519463","name":"Record GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false},{"key":"","value":"","disabled":true}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:05:43 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=F237C6BA3DD0BEFDA2E64C43E99C435F; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"98db33fd-2a1c-4f2c-b929-4c2db76a3b39"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"148"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"F237C6BA3DD0BEFDA2E64C43E99C435F","key":"JSESSIONID"}],"responseTime":"147","body":"{\"totalRecords\":3,\"totalPages\":1,\"data\":[{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"ns1\",\"value\":\"208.94.148.2\",\"id\":66813434,\"type\":\"A\"},{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"ns2\",\"value\":\"208.80.124.2\",\"id\":66813437,\"type\":\"A\"},{\"source\":1,\"ttl\":86400,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"www\",\"value\":\"1.1.1.1\",\"id\":57181329,\"type\":\"A\"}],\"page\":0}"}],"_postman_id":"ae20deac-3681-48fd-a8ee-aca15d0edafd"},{"name":"Record PUT","event":[{"listen":"prerequest","script":{"id":"fafce0cd-ddf9-4fc2-ba27-1129aea6df6b","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"8defc93e-36fe-4d73-a9eb-2313f1f9bab8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"www\",\"type\":\"A\",\"value\":\"192.168.1.1\",\"id\":\"57181329\",\"gtdLocation\":\"DEFAULT\",\"ttl\":86400}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7897817/records/199059758","description":"<p>Update a record within a domain where domainId equals 1119443 and the recordId equals 57181329.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","7897817","records","199059758"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"4cca1f8d-b156-4d3c-8090-464ed26d4c49","name":"Record PUT","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\"name\":\"www\",\"type\":\"A\",\"value\":\"192.168.1.1\",\"id\":\"57181329\",\"gtdLocation\":\"DEFAULT\",\"ttl\":86400}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/57181329"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Length","name":"Content-Length","value":"0"},{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:06:49 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=E6A026C28088A96D08E8E88A93CD5315; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"8c10b93e-2a38-48a7-8afa-bacc4738e7d6"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"147"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"E6A026C28088A96D08E8E88A93CD5315","key":"JSESSIONID"}],"responseTime":"402","body":""}],"_postman_id":"8defc93e-36fe-4d73-a9eb-2313f1f9bab8"},{"name":"Record Create","event":[{"listen":"prerequest","script":{"id":"d4fb6186-a650-45f5-a7e7-9cbd4f4d5d41","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"1f3ac624-b30a-46a4-904d-c1e7ffc24994","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"mail\",\"type\":\"A\",\"value\":\"192.168.1.1\",\"gtdLocation\":\"DEFAULT\",\"ttl\":86400}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/","description":"<p>Create a record within a domain where domainId equals 1119443 of type A with the name field of mail and an IP of 192.168.1.1.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"96d33828-094e-4d84-91c3-9dda32075594","name":"Record Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false},{"key":"","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\"name\":\"mail\",\"type\":\"A\",\"value\":\"192.168.1.1\",\"gtdLocation\":\"DEFAULT\",\"ttl\":86400}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:07:30 GMT"},{"description":"","key":"Location","name":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/66814826"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=2C1715168467C163507235DC4A286E6E; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"60839036-0623-4996-a07c-6db9791b9a0e"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"146"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"2C1715168467C163507235DC4A286E6E","key":"JSESSIONID"}],"responseTime":"525","body":"{\"source\":1,\"ttl\":86400,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"mail\",\"value\":\"192.168.1.1\",\"id\":66814826,\"type\":\"A\"}"}],"_postman_id":"1f3ac624-b30a-46a4-904d-c1e7ffc24994"},{"name":"Record Delete","event":[{"listen":"prerequest","script":{"id":"4a12bd32-e4a4-41ab-9005-7463a57d7b64","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"7503c1cc-6a4b-4bf4-a32c-fdda1c8ee328","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/66814826","description":"<p>Delete a record within a domain where domainId equals 1119443 and recordId equals 66814826.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records","66814826"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"ff75417c-ef08-4378-9cde-71dad3a3b8a9","name":"Record Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/66814826"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Length","name":"Content-Length","value":"0"},{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:08:20 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=0F55F7F0E30C1AB781C7CB17C976EA14; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"d58c02d2-dd0e-4e01-8a8a-8c03f5589568"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"145"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"0F55F7F0E30C1AB781C7CB17C976EA14","key":"JSESSIONID"}],"responseTime":null,"body":""}],"_postman_id":"7503c1cc-6a4b-4bf4-a32c-fdda1c8ee328"},{"name":"All Record Delete","event":[{"listen":"prerequest","script":{"id":"bd505699-5d8d-4599-b5ad-90be35caea05","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"a36b257e-b1ee-403c-b559-bc5516635c24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/","description":"<p>Delete all records within a domain where domainId equals 1119443.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"1b0933ca-4205-40b5-8f8b-9d92e820d27c","name":"Record Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Length","name":"Content-Length","value":"0"},{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:08:20 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=0F55F7F0E30C1AB781C7CB17C976EA14; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"d58c02d2-dd0e-4e01-8a8a-8c03f5589568"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"145"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"0F55F7F0E30C1AB781C7CB17C976EA14","key":"JSESSIONID"}],"responseTime":null,"body":""}],"_postman_id":"a36b257e-b1ee-403c-b559-bc5516635c24"},{"name":"Record GET by Type","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"c6cfc542-dd62-47c4-906f-e19660c7d43e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records?type=A","description":"<p>Search for a specific record in a domain where domainId equals 1119443 by the type of A.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records"],"host":["api","dnsmadeeasy","com"],"query":[{"key":"type","value":"A"}],"variable":[]}},"response":[{"id":"613e1549-f59d-4c8f-9c42-a7cb02d15fe6","name":"Record GET by Type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"url":{"raw":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records?type=A","protocol":"https","host":["api","dnsmadeeasy","com"],"path":["V2.0","dns","managed","1119443","records"],"query":[{"key":"type","value":"A"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:08:56 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=AC60CEF848074E0BDE9A4D38B304BD14; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"36826b87-3cf4-4419-8385-34ac56d28195"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"144"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"AC60CEF848074E0BDE9A4D38B304BD14","key":"JSESSIONID"}],"responseTime":null,"body":"{\"totalRecords\":3,\"totalPages\":1,\"data\":[{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"ns1\",\"value\":\"208.94.148.2\",\"id\":66813434,\"type\":\"A\"},{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"ns2\",\"value\":\"208.80.124.2\",\"id\":66813437,\"type\":\"A\"},{\"source\":1,\"ttl\":86400,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"www\",\"value\":\"192.168.1.1\",\"id\":57181329,\"type\":\"A\"}],\"page\":0}"}],"_postman_id":"c6cfc542-dd62-47c4-906f-e19660c7d43e"},{"name":"Record GET by Name","event":[{"listen":"prerequest","script":{"id":"4b3dfc7c-b04e-4f65-8a11-ab5234091967","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"9a7a80e8-0983-463f-aa92-ce8707e087c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7016508/records?recordName=www","description":"<p>Search for a specific record in a domain where domainId equals 7016508 by the name of www.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","7016508","records"],"host":["api","dnsmadeeasy","com"],"query":[{"key":"recordName","value":"www"}],"variable":[]}},"response":[{"id":"e2afd71e-8c40-4743-b8ac-03bdc33fafc0","name":"Record GET by Name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":{"raw":"https://api.dnsmadeeasy.com/V2.0/dns/managed/7016508/records?recordName=www","protocol":"https","host":["api","dnsmadeeasy","com"],"path":["V2.0","dns","managed","7016508","records"],"query":[{"key":"recordName","value":"www"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 18:51:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"0ad63f16-8939-4696-af16-ff1eddd78c60"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=0A875FD280233A1688D9FCF53D23ABB0; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 1,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"source\": 1,\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 30,\n            \"sourceId\": 7016508,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"www\",\n            \"value\": \"\",\n            \"id\": 141308664,\n            \"type\": \"CNAME\"\n        }\n    ],\n    \"page\": 0\n}"}],"_postman_id":"9a7a80e8-0983-463f-aa92-ce8707e087c8"}],"id":"99ec6f53-ecd1-4ca5-b0bf-c997014108ef","description":"<p>The record data type contains information about DNS records for a given domain. The following fields are available:</p>\n<table>\n<tr><th><i>/dns/managed/{domain_id}/records/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>value</i></td>\n<td>String</td>\n<td>             HTTPRED: \n                 MX:  \n                 NS: \n                 PTR: \n                 SRV:    \n                 TXT: \n</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>numeric</td>\n<td>The unique record identifier</td>\n</tr>\n<tr>\n<td><i>type</i></td>\n<td>String</td>\n<td>The record type. Values: A, AAAA, ANAME, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT, SPF, or SOA.</td>\n</tr>\n<tr>\n<td><i>source</i></td>\n<td>Numeric</td>\n<td>1 if the record is the record is domain specific, 0 if the record is part of a template.</td>\n</tr>\n<tr>\n<td><i>sourceId</i></td>\n<td>Numeric</td>\n<td>The source domain ID of the record.</td>\n</tr>\n<tr>\n<td><i>dynamicDns</i></td>\n<td>boolean</td>\n<td>Indicates if the record has dynamic DNS enabled or not.</td>\n</tr>\n<tr>\n<td><i>password</i></td>\n<td>String</td>\n<td>The per record password for a dynamic DNS update.</td>\n</tr>\n<tr>\n<td><i>ttl</i></td>\n<td>Numeric</td>\n<td>The time to live or TTL of the record.</td>\n</tr>\n<tr>\n<td><i>monitor</i></td>\n<td>Boolean</td>\n<td>Indicates if System Monitoring is enabled for an A record.</td>\n</tr>\n<tr>\n<td><i>failover</i></td>\n<td>Boolean</td>\n<td>Indicates if DNS Failover is enabled for an A record.</td>\n</tr>\n<tr>\n<td><i>failed</i></td>\n<td>Boolean</td>\n<td>Indicates if an A record is in failed status.</td>\n</tr>\n<tr>\n<td><i>gtdLocation</i></td>\n<td>String</td>\n<td>Global Traffic Director location. Values:\n        DEFAULT, \n        US_EAST, \n        US_WEST, \n        EUROPE,\n        ASIA_PAC,\n        OCREANIA,\n                SOUTH_AMERICA</td>\n</tr>\n<tr>\n<td><i>description</i></td>\n<td>String</td>\n<td>For HTTP Redirection Records, A description of the HTTP Redirection Record</td>\n</tr>\n<tr>\n<td><i>keywords</i></td>\n<td>String</td>\n<td>For HTTPRED records. Keywords associated with the HTTPRED record.</td>\n</tr>\n<tr>\n<td><i>title</i></td>\n<td>String</td>\n<td>For HTTPRED records. The title of the HTTPRED record.</td>\n</tr>\n<tr>\n<td><i>redirectType</i></td>\n<td>String</td>\n<td>For HTTPRED records. Type of redirection performed. Values:\n    Hidden Frame Masked, \n    Standard – 302,\n    Standard – 301\n</td>\n</tr>\n<tr>\n<td><i>hardlink</i></td>\n<td>Boolean</td>\n<td>For HTTP Redirection Records</td>\n</tr>\n<tr>\n<td><i>mxLevel</i></td>\n<td>Numeric</td>\n<td>The priority for an MX record</td>\n</tr>\n<tr>\n<td><i>weight</i></td>\n<td>Numeric</td>\n<td>The weight for an SRV Record</td>\n</tr>\n<tr>\n<td><i>priority</i></td>\n<td>Numeric</td>\n<td>The priority for an SRV Record</td>\n</tr>\n<tr>\n<td><i>port</i></td>\n<td>Numeric</td>\n<td>The port for an SRV Record</td>\n</tr>\n<tr>\n<td><i>caaType</i></td>\n<td>String</td>\n<td>For CAA records. Allows you to choose how you want certificates to be issued by the CA (issue, issuewild or iodef)</td>\n</tr>\n<td><i>issuerCritical</i></td>\n<td>Numeric</td>\n<td>For CAA records. Enter 1 for critical or 0 for non-critical</td>\n\n</table>","_postman_id":"99ec6f53-ecd1-4ca5-b0bf-c997014108ef"},{"name":"Managed DNS Multi Record Actions","item":[{"name":"Multi-Record Create","event":[{"listen":"prerequest","script":{"id":"21759424-7f07-44f1-b151-dad11a1284a2","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"5e525240-6b99-4fcc-8ea8-f3d6c8bf144b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"[{\"name\":\"recordone\", \"type\":\"A\", \"value\":\"192.168.1.1\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}, {\"name\":\"recordtwo\", \"type\":\"A\",\n\"value\":\"192.168.1.2\", \"gtdLocation\":\"DEFAULT\",\"ttl\":1800},\n{\"name\":\"recordthree\", \"type\":\"A\", \"value\":\"192.168.1.3\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/createMulti","description":"<p>Create multiple records within a domain where domainId equals 1119443 in a single call.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records","createMulti"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"6c28ccbc-68b3-420b-ad56-e199a0ced8b8","name":"Multi-Record Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"[{\"name\":\"recordone\", \"type\":\"A\", \"value\":\"192.168.1.1\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}, {\"name\":\"recordtwo\", \"type\":\"A\",\n\"value\":\"192.168.1.2\", \"gtdLocation\":\"DEFAULT\",\"ttl\":1800},\n{\"name\":\"recordthree\", \"type\":\"A\", \"value\":\"192.168.1.3\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/createMulti"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:26:00 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/createMulti/1119443","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=A3DC01A3108234FFF4D2E4E64E99FA9E; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"cfb7bf54-cb44-41cf-a4d3-b971dcdad5ea","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"148","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"A3DC01A3108234FFF4D2E4E64E99FA9E","key":"JSESSIONID"}],"responseTime":"217","body":"[{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"recordone\",\"value\":\"192.168.1.1\",\"id\":66815809,\"type\":\"A\"},{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"recordtwo\",\"value\":\"192.168.1.2\",\"id\":66815810,\"type\":\"A\"},{\"source\":1,\"ttl\":1800,\"gtdLocation\":\"DEFAULT\",\"sourceId\":1119443,\"failover\":false,\"monitor\":false,\"hardLink\":false,\"dynamicDns\":false,\"failed\":false,\"name\":\"recordthree\",\"value\":\"192.168.1.3\",\"id\":66815808,\"type\":\"A\"}]"}],"_postman_id":"5e525240-6b99-4fcc-8ea8-f3d6c8bf144b"},{"name":"Multi-Record Update","event":[{"listen":"prerequest","script":{"id":"14ac5388-8d11-47d5-b3f4-0e28fbd4125b","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"c9a001b1-b550-4d28-a7ff-605d4ad89c69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"[{\"id\":57182369, \"name\":\"recordone\", \"type\":\"A\", \"value\":\"10.10.10.10\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}, {\"id\":57182370, \"name\":\"recordtwo\", \"type\":\"A\",\n\"value\":\"10.10.10.11\", \"gtdLocation\":\"DEFAULT\",\"ttl\":1800},\n{\"id\":57182368, \"name\":\"recordthree\", \"type\":\"A\", \"value\":\"10.10.10.12\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/updateMulti","description":"<p>Update multiple records within a domain where domainId equals 1119443 in a single call.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records","updateMulti"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"dec24097-fa91-45f0-be00-15ba635ad5a6","name":"Multi-Record Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"[{\"id\":66815809, \"name\":\"recordone\", \"type\":\"A\", \"value\":\"10.10.10.10\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}, {\"id\":66815810, \"name\":\"recordtwo\", \"type\":\"A\",\n\"value\":\"10.10.10.11\", \"gtdLocation\":\"DEFAULT\",\"ttl\":1800},\n{\"id\":66815808, \"name\":\"recordthree\", \"type\":\"A\", \"value\":\"10.10.10.12\",\n\"gtdLocation\":\"DEFAULT\",\"ttl\":1800}]"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/updateMulti"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:27:33 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=D2BD43E5FD67AC375FAE15B19FAB2882; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"42f0f72f-93ce-4c37-a833-9190ed52a561","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"146","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"D2BD43E5FD67AC375FAE15B19FAB2882","key":"JSESSIONID"}],"responseTime":"186","body":""}],"_postman_id":"c9a001b1-b550-4d28-a7ff-605d4ad89c69"},{"name":"Multi-Record Delete","event":[{"listen":"prerequest","script":{"id":"c0a0838a-649e-4c41-8bee-c428434027c1","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"8db28a55-2105-405a-ba36-0832ce1ff8ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records?ids=66815810&ids=66815808&ids=66815809","description":"<p>Delete multiple records within a domain where domainId equals 1119443 and recordIds equal 66815810, 66815808, and 66815809 in a single call.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records"],"host":["api","dnsmadeeasy","com"],"query":[{"key":"ids","value":"66815810"},{"key":"ids","value":"66815808"},{"key":"ids","value":"66815809"}],"variable":[]}},"response":[{"id":"5afc9417-2502-4023-b292-2566ff035cb7","name":"Multi-Record Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records?ids=66815810&ids=66815808&ids=66815809","protocol":"https","host":["api","dnsmadeeasy","com"],"path":["V2.0","dns","managed","1119443","records"],"query":[{"key":"ids","value":"66815810"},{"key":"ids","value":"66815808"},{"key":"ids","value":"66815809"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:32:14 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=AB62E109919EFB0105D3E5E50B4F4075; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"a6d369f4-3496-4845-9c9d-83e054603234","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"147","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"AB62E109919EFB0105D3E5E50B4F4075","key":"JSESSIONID"}],"responseTime":"363","body":""}],"_postman_id":"8db28a55-2105-405a-ba36-0832ce1ff8ca"},{"name":"All Record Delete","event":[{"listen":"prerequest","script":{"id":"bd505699-5d8d-4599-b5ad-90be35caea05","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"d8db6820-ab31-42b5-abb4-c32b0860b554","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/","description":"<p>Delete all records within a domain where domainId equals 1119443.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed","1119443","records",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"b66b0336-3bce-4a8e-9ba7-8c2777a416cf","name":"Record Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/1119443/records/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Length","name":"Content-Length","value":"0"},{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 16:08:20 GMT"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=0F55F7F0E30C1AB781C7CB17C976EA14; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"d58c02d2-dd0e-4e01-8a8a-8c03f5589568"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"145"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"0F55F7F0E30C1AB781C7CB17C976EA14","key":"JSESSIONID"}],"responseTime":null,"body":""}],"_postman_id":"d8db6820-ab31-42b5-abb4-c32b0860b554"}],"id":"7aaea503-9ae5-4367-bac4-d0313592d772","description":"<p>The multi record data type contains information about domain actions for multiple records at a time. The following fields are available:</p>\n<table>\n<tr>\n<td>/dns/managed/{domain_id}/multi/records/</td>\n</tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>value</i></td>\n<td>String</td>\n<td>             HTTPRED: \n                 MX:  \n                 NS: \n                 PTR: \n                 SRV:    \n                 TXT: \n</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>numeric</td>\n<td>The unique record identifier</td>\n</tr>\n<tr>\n<td><i>type</i></td>\n<td>String</td>\n<td>The record type. Values: A, AAAA, ANAME, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT, SPF, or SOA.</td>\n</tr>\n<tr>\n<td><i>source</i></td>\n<td>Numeric</td>\n<td>1 if the record is the record is domain specific, 0 if the record is part of a template.</td>\n</tr>\n<tr>\n<td><i>sourceId</i></td>\n<td>Numeric</td>\n<td>The source domain ID of the record.</td>\n</tr>\n<tr>\n<td><i>dynamicDns</i></td>\n<td>boolean</td>\n<td>Indicates if the record has dynamic DNS enabled or not.</td>\n</tr>\n<tr>\n<td><i>password</i></td>\n<td>String</td>\n<td>The per record password for a dynamic DNS update.</td>\n</tr>\n<tr>\n<td><i>ttl</i></td>\n<td>Numeric</td>\n<td>The time to live or TTL of the record.</td>\n</tr>\n<tr>\n<td><i>monitor</i></td>\n<td>Boolean</td>\n<td>Indicates if System Monitoring is enabled for an A record.</td>\n</tr>\n<tr>\n<td><i>failover</i></td>\n<td>Boolean</td>\n<td>Indicates if DNS Failover is enabled for an A record.</td>\n</tr>\n<tr>\n<td><i>failed</i></td>\n<td>Boolean</td>\n<td>Indicates if an A record is in failed status.</td>\n</tr>\n<tr>\n<td><i>gtdLocation</i></td>\n<td>String</td>\n<td>Global Traffic Director location. Values:\n        DEFAULT, \n        US_EAST, \n        US_WEST, \n        EUROPE,\n        ASIA_PAC,\n        OCREANIA,\n                SOUTH_AMERICA</td>\n</tr>\n<tr>\n<td><i>description</i></td>\n<td>String</td>\n<td>For HTTP Redirection Records, A description of the HTTP Redirection Record</td>\n</tr>\n<tr>\n<td><i>keywords</i></td>\n<td>String</td>\n<td>For HTTPRED records. Keywords associated with the HTTPRED record.</td>\n</tr>\n<tr>\n<td><i>title</i></td>\n<td>String</td>\n<td>For HTTPRED records. The title of the HTTPRED record.</td>\n</tr>\n<tr>\n<td><i>redirectType</i></td>\n<td>String</td>\n<td>For HTTPRED records. Type of redirection performed. Values:\n    Hidden Frame Masked, \n    Standard – 302,\n    Standard – 301\n</td>\n</tr>\n<tr>\n<td><i>hardlink</i></td>\n<td>Boolean</td>\n<td>For HTTP Redirection Records</td>\n</tr>\n<tr>\n<td><i>mxLevel</i></td>\n<td>Numeric</td>\n<td>The priority for an MX record</td>\n</tr>\n<tr>\n<td><i>weight</i></td>\n<td>Numeric</td>\n<td>The weight for an SRV Record</td>\n</tr>\n<tr>\n<td><i>priority</i></td>\n<td>Numeric</td>\n<td>The priority for an SRV Record</td>\n</tr>\n<tr>\n<td><i>port</i></td>\n<td>Numeric</td>\n<td>The port for an SRV Record</td>\n</tr>\n</table>","_postman_id":"7aaea503-9ae5-4367-bac4-d0313592d772"},{"name":"Custom SOA Record Actions","item":[{"name":"SOA Record GET All","event":[{"listen":"prerequest","script":{"id":"5718f3aa-9d63-4de8-953c-f36c7547645a","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"f616e3c2-d782-4c6c-9112-86b455cc1d15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/","description":"<p>Return all custom SOA records created within the account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","soa",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"81264988-b5ae-4812-b2cd-a08c647208e2","name":"SOA Record GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 21:00:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"551c7236-27df-4e3c-9f85-595b44f597e6"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=8C570B546D3A04D24977FD46AD6C7CF7; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 1,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"comp\": \"ns10.dnsmadeeasy.com.\",\n            \"expire\": 1209600,\n            \"negativeCache\": 180,\n            \"refresh\": 43200,\n            \"retry\": 3600,\n            \"serial\": 2009010101,\n            \"ttl\": 86400,\n            \"email\": \"testing.this.gmail.com.\",\n            \"name\": \"Master For Second Set\",\n            \"id\": 14038\n        }\n    ],\n    \"page\": 0\n}"}],"_postman_id":"f616e3c2-d782-4c6c-9112-86b455cc1d15"},{"name":"SOA Record  Single GET","event":[{"listen":"prerequest","script":{"id":"3ea7d923-b059-4a79-9b96-b6a6084edc86","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"8a5da787-f1df-44f4-9382-6420f0627626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/14038","description":"<p>Return an SOA record with id 14038.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","soa","14038"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"c5e92aa0-9787-4ce6-962d-90ddfc6f9c9e","name":"SOA Record  Single GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/14038"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 21:03:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"7534c9d5-1f85-4d00-8d42-ace51cf608a7"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=22C5E4E96C5B914C9759A0A0035641F3; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"comp\": \"ns10.dnsmadeeasy.com.\",\n    \"expire\": 1209600,\n    \"negativeCache\": 180,\n    \"refresh\": 43200,\n    \"retry\": 3600,\n    \"serial\": 2009010101,\n    \"ttl\": 86400,\n    \"email\": \"testing.this.gmail.com.\",\n    \"name\": \"Master For Second Set\",\n    \"id\": 14038\n}"}],"_postman_id":"8a5da787-f1df-44f4-9382-6420f0627626"},{"name":"SOA Record  PUT","event":[{"listen":"prerequest","script":{"id":"6a5a7fcd-a7d2-4fb6-9261-8d543c2286f8","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"4940e953-aa8a-4af8-a2a5-2de0c1fca32e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"ids\":[\"7450636\",\"7450637\"], \"soaId\":\"14038\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Assign a custom SOA record with id 5429 to the domains with domainId's 1119443 and 5839121.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"d55fddcf-1174-4094-b537-2b4497e207fe","name":"SOA Record  PUT","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"ids\":[\"7450636\",\"7450637\"], \"soaId\":\"14038\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:38:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=9A09AB966D7552ABA5EE945B289B2B16; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"f7b5c550-48d6-441d-9e0b-9574897ed269","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"9A09AB966D7552ABA5EE945B289B2B16","key":"JSESSIONID"}],"responseTime":"545","body":""}],"_postman_id":"4940e953-aa8a-4af8-a2a5-2de0c1fca32e"},{"name":"Edit SOA Record ","event":[{"listen":"prerequest","script":{"id":"7cda6be9-5016-45fe-a104-ef5da8b3143a","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"c5898917-874f-40c7-9264-778b750e8206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\": \"Master For Second Set\",\"email\": \"dns.dnsmadeeasy.com.\",\n            \"ttl\": 21600,\n            \"negativeCache\": 10800,\n            \"retry\": 3600,\n            \"serial\": 2009010103,\n            \"comp\": \"ns10.dnsmadeeasy.com.\",\n            \"expire\": 604800,\n            \"refresh\": 14400,\n            \"id\": 5429\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/5429","description":"<p>Edit a custom SOA record with id 5429.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","soa","5429"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"16babcc7-b629-4161-b981-4ee9fde3fa20","name":"Edit SOA Record ","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\": \"Master For Second Set\",\"email\": \"dns.dnsmadeeasy.com.\",\n            \"ttl\": 21600,\n            \"negativeCache\": 10800,\n            \"retry\": 3600,\n            \"serial\": 2009010104,\n            \"comp\": \"ns10.dnsmadeeasy.com.\",\n            \"expire\": 604800,\n            \"refresh\": 14400,\n            \"id\": 5429\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/5429"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:39:19 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=4BBAAF27A365D1F9F1695F10D6119900; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"102a80aa-fc53-4cf4-b547-8554e808ce0d","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"4BBAAF27A365D1F9F1695F10D6119900","key":"JSESSIONID"}],"responseTime":"463","body":""}],"_postman_id":"c5898917-874f-40c7-9264-778b750e8206"},{"name":"Create SOA Record","event":[{"listen":"prerequest","script":{"id":"7cda6be9-5016-45fe-a104-ef5da8b3143a","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"ada9c5e3-377a-44b4-a308-9a723ae0fe0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n\t\t\t\"name\": \"Master For Second Set\",\n\t\t\t\"email\": \"dns.dnsmadeeasy.com.\",\n            \"ttl\": 21600,\n            \"negativeCache\": 10800,\n            \"retry\": 3600,\n            \"serial\": 2009010103,\n            \"comp\": \"ns10.dnsmadeeasy.com.\",\n            \"expire\": 604800,\n            \"refresh\": 14400\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa","description":"<p>Create a custom SOA record.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","soa"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"a3c85267-0c61-4851-9db5-355328c12280","name":"Create SOA Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n\t\t\t\"name\": \"Master For Second Set\",\n\t\t\t\"email\": \"dns.dnsmadeeasy.com.\",\n            \"ttl\": 21600,\n            \"negativeCache\": 10800,\n            \"retry\": 3600,\n            \"serial\": 2009010103,\n            \"comp\": \"ns10.dnsmadeeasy.com.\",\n            \"expire\": 604800,\n            \"refresh\": 14400\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 21:18:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"e15fa575-afa0-4481-bde1-5ab9e27de908"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=B3F7B59B11FE46ABE4F644F616C6994A; Path=/V2.0; HttpOnly"},{"key":"Location","value":"http://api.dnsmadeeasy.com/V2.0/dns/soa/14442"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"comp\": \"ns10.dnsmadeeasy.com.\",\n    \"expire\": 604800,\n    \"negativeCache\": 10800,\n    \"refresh\": 14400,\n    \"retry\": 3600,\n    \"serial\": 2009010103,\n    \"ttl\": 21600,\n    \"email\": \"dns.dnsmadeeasy.com.\",\n    \"name\": \"Master For Second Set\",\n    \"id\": 14442\n}"}],"_postman_id":"ada9c5e3-377a-44b4-a308-9a723ae0fe0d"},{"name":"Apply SOA Record","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"198d9ed5-b676-423c-906c-bd93f4bcac3a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example123456.com\",\"example1234567.com\"], \"soaId\":\"5429\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Create two domain names and apply a custom SOA record.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"88b167cb-5bac-4d0d-8088-6e2be734c1c8","name":"Apply SOA Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"names\":[\"example123456.com\",\"example1234567.com\"], \"soaId\":\"5429\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 16:56:05 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=238CC792AC6D11E46EEE91265643E584; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"d9608980-0d90-4ff6-ac3b-fda258893d61","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"149","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"238CC792AC6D11E46EEE91265643E584","key":"JSESSIONID"}],"responseTime":"531","body":"[5940425,5940424]"}],"_postman_id":"198d9ed5-b676-423c-906c-bd93f4bcac3a"},{"name":"Delete SOA Record","event":[{"listen":"prerequest","script":{"id":"ea5eb434-3de0-43dd-86e3-0b7303aa96ed","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"468ad34c-33dd-4ae4-aa5b-6d37e9a9b2ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/14038","description":"<p>Delete a custom SOA record with id 14038.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","soa","14038"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"2a276d1a-ee27-48f4-b7ec-cc6eade6385b","name":"Delete SOA Record","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/soa/14038"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 21:25:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"b3f7d33e-0abd-4402-bc17-919cd699990f"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=94A3B3EFA19701B562ED9F137C482962; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"468ad34c-33dd-4ae4-aa5b-6d37e9a9b2ab"}],"id":"518cb539-9f6e-427f-a5eb-db0f639a0df1","description":"<p>The SOA Record data type contains parameters for custom SOA records and their configuration. The following fields are available:</p>\n<table>\n<tr><th><i>/dns/soa</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>name</i></td>\n<td>String</td>\n<td>SOA Record name</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>Numeric</td>\n<td>Identifier (system defined)</td>\n</tr>\n<tr>\n<td><i>email</i></td>\n<td>String</td>\n<td>Contact email address</td>\n</tr>\n<tr>\n<td><i>ttl</i></td>\n<td>Numeric</td>\n<td>TTL of the SOA Record (in seconds)</td>\n</tr>\n<tr>\n<td><i>comp</i></td>\n<td>String</td>\n<td>Primary name server</td>\n</tr>\n<tr>\n<td><i>serial</i></td>\n<td>Numeric</td>\n<td>Starting zone serial number</td>\n</tr>\n<tr>\n<td><i>refresh</i></td>\n<td>Numeric</td>\n<td>Zone refresh time (in seconds)</td>\n</tr>\n<tr>\n<td><i>retry</i></td>\n<td>Numeric</td>\n<td>Failed Refresh retry time (in seconds)</td>\n</tr>\n<tr>\n<td><i>expire</i></td>\n<td>Numeric</td>\n<td>Expire time of zone the (in seconds)</td>\n</tr>\n<tr>\n<td><i>negativeCache</i></td>\n<td>Numeric</td>\n<td>Record not found cache (in seconds)</td>\n</tr>\n</table>","_postman_id":"518cb539-9f6e-427f-a5eb-db0f639a0df1"},{"name":"Vanity Name Server Actions","item":[{"name":"Vanity Name Server GET All","event":[{"listen":"prerequest","script":{"id":"b74b4379-d4b2-474d-ac92-cfaa5cc3f2d9","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"c99248b5-95da-4ac6-942b-f1ba92c42b81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity","description":"<p>Return all vanity name server configurations in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","vanity"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"518685cd-a834-41c6-a785-d6605e1992f9","name":"Vanity Name Server GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 22:58:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"ba51db50-1b89-4226-a171-e24d2bf13a2d"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=B04FCA723D923064FE18EBD3F2A69627; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 10,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"nameServerGroupId\": 1,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns0.dnsmadeeasy.org\",\n                \"ns1.dnsmadeeasy.org\",\n                \"ns2.dnsmadeeasy.org\",\n                \"ns3.dnsmadeeasy.org\",\n                \"ns4.dnsmadeeasy.org\"\n            ],\n            \"name\": \"ns0,1,2,3,4.dnsmadeeasy.org\",\n            \"id\": 1420\n        },\n        {\n            \"nameServerGroupId\": 1,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns0.dnsmadeeasy.com\",\n                \"ns1.dnsmadeeasy.com\",\n                \"ns2.dnsmadeeasy.com\",\n                \"ns3.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns0,1,2,3.dnsmadeeasy.com\",\n            \"id\": 216\n        },\n        {\n            \"nameServerGroupId\": 1,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns0.dnsmadeeasy.com\",\n                \"ns2.dnsmadeeasy.com\",\n                \"ns3.dnsmadeeasy.com\",\n                \"ns4.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns0,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"id\": 2235\n        },\n        {\n            \"nameServerGroupId\": 2,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns10.dnsmadeeasy.com\",\n                \"ns11.dnsmadeeasy.com\",\n                \"ns12.dnsmadeeasy.com\",\n                \"ns13.dnsmadeeasy.com\",\n                \"ns14.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns10,11,12,13,14.dnsmadeeasy.com\",\n            \"id\": 5577\n        },\n        {\n            \"nameServerGroupId\": 2,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns10.dnsmadeeasy.com\",\n                \"ns11.dnsmadeeasy.com\",\n                \"ns12.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns10,11,12.dnsmadeeasy.com\",\n            \"id\": 5578\n        },\n        {\n            \"nameServerGroupId\": 2,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns10.dnsmadeeasy.com\",\n                \"ns11.dnsmadeeasy.com\",\n                \"ns12.dnsmadeeasy.com\",\n                \"ns13.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns10,ns11,ns12,ns13.dnsmadeeasy.com\",\n            \"id\": 5187\n        },\n        {\n            \"nameServerGroupId\": 2,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns10.dnsmadeeasy.org\",\n                \"ns11.dnsmadeeasy.org\",\n                \"ns12.dnsmadeeasy.org\",\n                \"ns13.dnsmadeeasy.org\",\n                \"ns14.dnsmadeeasy.org\",\n                \"ns15.dnsmadeeasy.org\"\n            ],\n            \"name\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.org\",\n            \"id\": 5188\n        },\n        {\n            \"nameServerGroupId\": 2,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns11.dnsmadeeasy.com\",\n                \"ns12.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns11,ns12.dnsmadeeasy.com\",\n            \"id\": 5189\n        },\n        {\n            \"nameServerGroupId\": 1,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns1.dnsmadeeasy.com\",\n                \"ns3.dnsmadeeasy.com\",\n                \"ns4.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns1,3,4.dnsmadeeasy.com\",\n            \"id\": 23\n        },\n        {\n            \"nameServerGroupId\": 1,\n            \"accountId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": true,\n            \"servers\": [\n                \"ns1.dnsmadeeasy.com\",\n                \"ns3.dnsmadeeasy.com\"\n            ],\n            \"name\": \"ns1,3.dnsmadeeasy.com\",\n            \"id\": 24\n        }\n    ],\n    \"page\": 0\n}"}],"_postman_id":"c99248b5-95da-4ac6-942b-f1ba92c42b81"},{"name":"Vanity Name Server Single GET","event":[{"listen":"prerequest","script":{"id":"089ca6ea-da49-417d-8ab8-5d0aef710536","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"e4c0d66c-e452-4975-8833-91ca8babf0cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/29800/","description":"<p>Return a vanity name server configuration with id 29800.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","vanity","29800",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"a025b979-33af-4ae9-b67d-f5b4ea7070d2","name":"Vanity Name Server Single GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/29800/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Mar 2021 23:01:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"df75f692-69b2-44a5-924f-f47b019f3bdb"},{"key":"x-dnsme-requestsRemaining","value":"146"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=1D3B9C580347998FF964D05848E28313; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"nameServerGroupId\": 2,\n    \"accountId\": 160696,\n    \"default\": false,\n    \"nameServerGroup\": \"ns10,ns11,ns12,ns13,ns14,ns15.dnsmadeeasy.com\",\n    \"public\": false,\n    \"servers\": [\n        \"ns1.example.com\",\n        \"ns2.example.com\",\n        \"ns3.example.com\"\n    ],\n    \"name\": \"test123\",\n    \"id\": 29800\n}"}],"_postman_id":"e4c0d66c-e452-4975-8833-91ca8babf0cd"},{"name":"Vanity Name Server Create","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"1c666ef5-d893-48cc-8f50-1f42e3da6c3e","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n            \"nameServerGroupId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": false,\n            \"servers\": [\n                \"ns1.exampledomain.com\",\n                \"ns2.exampledomain.com\",\n                \"ns3.exampledomain.com\"\n            ],\n            \"name\": \"MySet\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/","description":"<p>Create a vanity name server configuration with id 26274.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","vanity",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"f63bebef-38e5-4c1d-adc5-7151c5ae26da","name":"Vanity Name Server Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\n            \"nameServerGroupId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": false,\n            \"servers\": [\n                \"ns1.exampledomain.com\",\n                \"ns2.exampledomain.com\",\n                \"ns3.exampledomain.com\"\n            ],\n            \"name\": \"MySet\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:01:12 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/26274","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=87AB3394BD99BE402AFEE4C6C80BE35D; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"1a8a4e21-f4d5-4e38-b37f-90a6e692ef86","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"146","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"87AB3394BD99BE402AFEE4C6C80BE35D","key":"JSESSIONID"}],"responseTime":"522","body":"{\"nameServerGroupId\":1,\"default\":false,\"nameServerGroup\":\"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\"servers\":[\"ns1.exampledomain.com\",\"ns2.exampledomain.com\",\"ns3.exampledomain.com\"],\"public\":false,\"name\":\"MySet\",\"id\":26274}"}],"_postman_id":"1c666ef5-d893-48cc-8f50-1f42e3da6c3e"},{"name":"Vanity Name Server PUT","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"13979e81-9b2d-4456-8798-9fca929fad51","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"ids\":[\"1119443\",\"5839121\"], \"vanityId\":\"16501\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Assign a vanity name server configuration with id  to the domains with domainId's 1119443 and 5839121.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"bbba7520-59a0-4008-980e-808a396e0084","name":"Vanity Name Server PUT","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"ids\":[\"1119443\",\"5839121\"], \"vanityId\":\"16501\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:01:59 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=37B6AD821F3AC8F048F1388E53325B3B; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"b34c4913-afd0-46a2-a696-67e6c064ef22","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"146","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"37B6AD821F3AC8F048F1388E53325B3B","key":"JSESSIONID"}],"responseTime":"499","body":""}],"_postman_id":"13979e81-9b2d-4456-8798-9fca929fad51"},{"name":"Apply Vanity Name Server Configuration","event":[{"listen":"prerequest","script":{"id":"74046da0-8973-4019-a072-b1ca3b469b42","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"0202b25d-cd1c-4dc2-bcc8-65b0cc73788b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example12345678.com\",\"example123456789.com\"], \"vanityId\":\"16501\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Create two domain names and apply a vanity configuration.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"2c39fcc1-3f73-40c7-9c95-340c162df262","name":"Apply Vanity Name Server Configuration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"names\":[\"example12345678.com\",\"example123456789.com\"], \"vanityId\":\"16501\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:02:49 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=A52FCFA1B4CEC93C65F2447618189B08; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"453b8eed-d0ab-43a7-b3dc-5c4f1466ccdc","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"A52FCFA1B4CEC93C65F2447618189B08","key":"JSESSIONID"}],"responseTime":"480","body":"[5940429,5940428]"}],"_postman_id":"0202b25d-cd1c-4dc2-bcc8-65b0cc73788b"},{"name":"Edit Vanity Name Server Configuration","event":[{"listen":"prerequest","script":{"id":"080d2351-1b3a-48a6-bf68-10bc0bfeb3ec","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"d710d4a9-0f30-4fc3-a9c3-9008c7af51ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n            \"nameServerGroupId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": false,\n            \"servers\": [\n                \"ns1.exampledomain.com\",\n                \"ns2.exampledomain.com\",\n                \"ns3.exampledomain.com\"\n            ],\n            \"name\": \"First Group 2\",\n            \"id\": 16501\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/16501/","description":"<p>Update a vanity configuration with id 16501.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","vanity","16501",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"6a2ee62f-5864-43d8-a384-7e083ae52035","name":"Edit Vanity Name Server Configuration","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\n            \"nameServerGroupId\": 1,\n            \"default\": false,\n            \"nameServerGroup\": \"ns0,ns1,ns2,ns3,ns4.dnsmadeeasy.com\",\n            \"public\": false,\n            \"servers\": [\n                \"ns1.exampledomain.com\",\n                \"ns2.exampledomain.com\",\n                \"ns3.exampledomain.com\"\n            ],\n            \"name\": \"First Group 2\",\n            \"id\": 16501\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/16501/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:03:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=1D43591CD771E337EAF24C9C4A5FF557; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"11731056-f46d-4870-a990-14572e5e44e4","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"144","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"1D43591CD771E337EAF24C9C4A5FF557","key":"JSESSIONID"}],"responseTime":"282","body":""}],"_postman_id":"d710d4a9-0f30-4fc3-a9c3-9008c7af51ad"},{"name":"Vanity Name Server Delete","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"30d709d4-93d1-47df-8098-5cf1faf78536","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/26276","description":"<p>Delete a vanity configuration with id 26276.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","vanity","26276"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"9acc3b88-b078-442d-b40a-5fb6073572c7","name":"Vanity Name Server Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/vanity/26276"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:06:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=41C666DE627A98B22F777674F5CBF101; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"b2b8c8f5-57de-4f21-b035-087e803127f0","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"141","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"41C666DE627A98B22F777674F5CBF101","key":"JSESSIONID"}],"responseTime":"523","body":""}],"_postman_id":"30d709d4-93d1-47df-8098-5cf1faf78536"}],"id":"0a8646f5-c04e-44bb-96a4-c50570a3a872","description":"<p>The Vanity DNS data type contains parameters for vanity DNS configuration. The available fields are:</p>\n<table>\n<tr><th><i>/dns/vanity/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>name</i></td>\n<td>String</td>\n<td>The identifiable name of the vanity DNS configuration</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>Numeric</td>\n<td>Identifier (system defined)</td>\n</tr>\n<tr>\n<td><i>nameServerGroupId</i></td>\n<td>Numeric</td>\n<td>The name server group the configuration is assigned</td>\n</tr>\n<tr>\n<td><i>publicConfig</i></td>\n<td>Boolean</td>\n<td>True represents a system defined rather than user defined vanity configuration.</td>\n</tr>\n<tr>\n<td><i>defaultConfig</i></td>\n<td>Boolean</td>\n<td>Indicates if the vanity configuration is the system default</td>\n</tr>\n<tr>\n<td><i>servers</i></td>\n<td>String</td>\n<td>The vanity host names defined in the configuration.</td>\n</tr>\n</table>","_postman_id":"0a8646f5-c04e-44bb-96a4-c50570a3a872"},{"name":"Template Actions","item":[{"name":"Template GET All","event":[{"listen":"prerequest","script":{"id":"1b2bd7c2-a3a1-4530-b72d-44ccab0aae79","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"12b983cb-8b6d-4a2f-8c5c-bca5512ca972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template","description":"<p>Return all template configurations public and private in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"5ca65432-aabd-4bbc-85df-a836a911113c","name":"Template GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 17:24:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"b5f9da23-4720-4618-b165-2956b567aa95"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=5C7EE075FBF6289E0F2E7CC0946B0440; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 8,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Blogger\",\n            \"id\": 8304\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Github Pages\",\n            \"id\": 8310\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Google Services\",\n            \"id\": 8305\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Heroku\",\n            \"id\": 8308\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Posterous\",\n            \"id\": 8307\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Tender Support\",\n            \"id\": 8309\n        },\n        {\n            \"domainIds\": [\n                7016508\n            ],\n            \"publicTemplate\": false,\n            \"name\": \"test template\",\n            \"id\": 24529\n        },\n        {\n            \"domainIds\": [],\n            \"publicTemplate\": true,\n            \"name\": \"Tumblr\",\n            \"id\": 8306\n        }\n    ],\n    \"page\": 0\n}"}],"_postman_id":"12b983cb-8b6d-4a2f-8c5c-bca5512ca972"},{"name":"Template Single GET","event":[{"listen":"prerequest","script":{"id":"aeffb5a2-9eb6-40a7-9a51-69fcdcbaefd8","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"2b6c55fa-9ea6-4177-b21c-73ddadd6b32e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/24529","description":"<p>Return a Template with id 24529.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","24529"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"cc16a5c0-8a07-4d0a-bacd-99d8248e46a4","name":"Template Single GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/24529"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 19:09:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"de1ae94b-559f-4dbe-8e92-89b9fb9061b6"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=4183A73B09E7B5DC6AC83BD33BAA1575; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"domainIds\": [\n        7016508\n    ],\n    \"publicTemplate\": false,\n    \"name\": \"test template\",\n    \"id\": 24529\n}"}],"_postman_id":"2b6c55fa-9ea6-4177-b21c-73ddadd6b32e"},{"name":"Template Create","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"79b10607-57c0-4ec1-8e0b-293f67dec09d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"New Template\",\"publicTemplate\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/","description":"<p>Create a new template.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"b2b28fe2-dcf9-4348-9c51-aba43179f45f","name":"Template Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\":\"New Template\",\"publicTemplate\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:14:06 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/template/22202","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=87CDB44166EE6C99FF8D29792B0BE4F1; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"c5676844-a700-4852-98a8-eaa72b026f97","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"147","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"87CDB44166EE6C99FF8D29792B0BE4F1","key":"JSESSIONID"}],"responseTime":"522","body":"{\"domainIds\":[],\"publicTemplate\":false,\"name\":\"New Template\",\"id\":22202}"}],"_postman_id":"79b10607-57c0-4ec1-8e0b-293f67dec09d"},{"name":"Apply Template","event":[{"listen":"prerequest","script":{"id":"4d915484-76a8-4d14-8bc1-5d28ea50422d","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"c0838b20-6653-47c6-a67c-688ceb48c669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example2345.com\",\"example3456.com\"], \"templateId\":\"24529\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/","description":"<p>Create two new domains and apply a template them, returning the new domain IDs.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","managed",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"77c6b6b8-66b6-4a80-b6fb-74c374902b67","name":"Apply Template","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"example2345.com\",\"example3456.com\"], \"templateId\":\"24529\" }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/managed/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 20:50:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"bc81c6e5-a9ba-4841-a256-58b8d2f810ee"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=E5DB656067EBCC5CA4803543B4069A79; Path=/V2.0; HttpOnly"},{"key":"Location","value":"http://api.dnsmadeeasy.com/V2.0/dns/managed/"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"[\n    7471931,\n    7471932\n]"}],"_postman_id":"c0838b20-6653-47c6-a67c-688ceb48c669"},{"name":"Delete Template","event":[{"listen":"prerequest","script":{"id":"80db8824-724b-4f5e-a44e-d68c549f5310","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"1881f7c9-8406-4501-9fdf-7ab8430d7b1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29530","description":"<p>Delete a Template record with id 29530.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","29530"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"4810aad5-1275-48d9-9251-5bb8ae025cca","name":"Delete Template","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29530"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 20:53:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"be969ed4-1745-498b-bcb7-cd999201cb3e"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=E1B473EC2A697F22C74DE7E9807B3A86; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1881f7c9-8406-4501-9fdf-7ab8430d7b1e"},{"name":"Template Record GET","event":[{"listen":"prerequest","script":{"id":"82d31195-58db-4537-9f47-7f809abf5a8f","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"9c3e9481-d8ed-4702-ab12-c2af8b4ff8e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/24529/records/","description":"<p>Return the record set in a template with id 24529.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","24529","records",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"ed420a39-5670-4968-a150-68f31be589f1","name":"Template Record GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/24529/records/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 20:56:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"bb94f249-f717-4b35-82bd-6ef52d4f1c33"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=5346F0AC4E5E0C6A0BD64E515924C8BB; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 4,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"source\": 2,\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"sourceId\": 24529,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"\",\n            \"value\": \"10.10.10.10\",\n            \"id\": 141837304,\n            \"type\": \"A\"\n        },\n        {\n            \"source\": 2,\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"sourceId\": 24529,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"mxLevel\": 10,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"\",\n            \"value\": \"mail.example.com.\",\n            \"id\": 141837516,\n            \"type\": \"MX\"\n        },\n        {\n            \"source\": 2,\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"sourceId\": 24529,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"arecord\",\n            \"value\": \"10.10.10.10\",\n            \"id\": 141837295,\n            \"type\": \"A\"\n        },\n        {\n            \"source\": 2,\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"sourceId\": 24529,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"cname\",\n            \"value\": \"example.com.\",\n            \"id\": 123951396,\n            \"type\": \"CNAME\"\n        }\n    ],\n    \"page\": 1\n}"}],"_postman_id":"9c3e9481-d8ed-4702-ab12-c2af8b4ff8e0"},{"name":"Template Record Create","event":[{"listen":"prerequest","script":{"id":"6ca820ba-9070-46ca-827f-91b17d7b24a9","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"55de5cc6-61f2-48f4-ac9a-badf5929d4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"\n        {\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"\",\n            \"value\": \"10.10.10.13\",\n            \"type\": \"A\"\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records/","description":"<p>Create a record in a template with templateId 29529.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","29529","records",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"f35b5197-64e3-426c-a724-c33675cc8b0c","name":"Template Record Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"\n        {\n            \"gtdLocation\": \"DEFAULT\",\n            \"ttl\": 1800,\n            \"failover\": false,\n            \"monitor\": false,\n            \"hardLink\": false,\n            \"dynamicDns\": false,\n            \"failed\": false,\n            \"name\": \"\",\n            \"value\": \"10.10.10.13\",\n            \"type\": \"A\"\n        }"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 21:03:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"d5d9d0ce-0528-417e-bd15-c689849b01ba"},{"key":"x-dnsme-requestsRemaining","value":"144"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=11F19E894315BCDB6A56EF238CC80EED; Path=/V2.0; HttpOnly"},{"key":"Location","value":"http://api.dnsmadeeasy.com/V2.0/dns/template/29529/records/141853986"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"source\": 2,\n    \"gtdLocation\": \"DEFAULT\",\n    \"ttl\": 1800,\n    \"sourceId\": 29529,\n    \"failover\": false,\n    \"monitor\": false,\n    \"hardLink\": false,\n    \"dynamicDns\": false,\n    \"failed\": false,\n    \"name\": \"\",\n    \"value\": \"10.10.10.13\",\n    \"id\": 141853986,\n    \"type\": \"A\"\n}"}],"_postman_id":"55de5cc6-61f2-48f4-ac9a-badf5929d4dd"},{"name":"Template Record Update","event":[{"listen":"prerequest","script":{"id":"ae62b656-a8b7-46cd-9762-6e3f0803fe63","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"1a343aa3-c8f2-4c7b-92fd-09aa9bfd60c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"gtdLocation\": \"DEFAULT\",\n    \"ttl\": 1800,\n    \"failover\": false,\n    \"monitor\": false,\n    \"hardLink\": false,\n    \"dynamicDns\": false,\n    \"failed\": false,\n    \"name\": \"\",\n    \"value\": \"10.10.10.100\",\n    \"id\": 141853986,\n    \"type\": \"A\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records/141853986","description":"<p>Update a record in a template with templateId 29529 and recordId 141853986.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","29529","records","141853986"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"a11f30d9-adc2-4dc6-abbd-fd697f2db8d1","name":"Template Record Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"gtdLocation\": \"DEFAULT\",\n    \"ttl\": 1800,\n    \"failover\": false,\n    \"monitor\": false,\n    \"hardLink\": false,\n    \"dynamicDns\": false,\n    \"failed\": false,\n    \"name\": \"\",\n    \"value\": \"10.10.10.100\",\n    \"id\": 141853986,\n    \"type\": \"A\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records/141853986"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 21:14:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"b3e9dbd2-9307-4f79-92a7-71536bd06a0e"},{"key":"x-dnsme-requestsRemaining","value":"145"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=047CCFE61AF877AD155FB818375A7C8C; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1a343aa3-c8f2-4c7b-92fd-09aa9bfd60c4"},{"name":"Template Record Delete","event":[{"listen":"prerequest","script":{"id":"1c4772a6-455c-4a3f-a6e0-533c9f96bd59","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"5871d4f0-1e86-4c7b-90cc-602f43f07e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records?ids=141853986","description":"<p>Delete a record in a template with templateId 29529 and recordId 141853986.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","template","29529","records"],"host":["api","dnsmadeeasy","com"],"query":[{"key":"ids","value":"141853986"}],"variable":[]}},"response":[{"id":"7d9e215a-8080-4d5f-aa46-90908873f89d","name":"Template Record Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.dnsmadeeasy.com/V2.0/dns/template/29529/records?ids=141853986","protocol":"https","host":["api","dnsmadeeasy","com"],"path":["V2.0","dns","template","29529","records"],"query":[{"key":"ids","value":"141853986"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 21:17:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"3a46de03-a7b9-47de-89bb-23704fdb6d2d"},{"key":"x-dnsme-requestsRemaining","value":"146"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=F8D7B27EB440C356E842E490521CA5E5; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5871d4f0-1e86-4c7b-90cc-602f43f07e5a"}],"id":"e21a51c1-c38f-479d-a1d3-5ce7e8d98ad8","description":"<p>The Template data type contains parameters for Record Set Template configuration. The available fields are:</p>\n<table>\n<tr><th><i>/dns/template/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>name</i></td>\n<td>String</td>\n<td>Template name</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>Numeric</td>\n<td>Identifier (system defined)</td>\n</tr>\n<tr>\n<td><i>domainIds</i></td>\n<td>Numeric</td>\n<td>Domain ID's currently assigned to the template</td>\n</tr>\n<tr>\n<td><i>publicTemplate</i></td>\n<td>Boolean</td>\n<td>True represents a system defined public template rather than a user defined account specific template.</td>\n</tr>\n</table>","_postman_id":"e21a51c1-c38f-479d-a1d3-5ce7e8d98ad8"},{"name":"Account ACL Actions","item":[{"name":"Transfer ACL GET All","event":[{"listen":"prerequest","script":{"id":"d2dd58d7-fc10-4f6c-bff6-b6e907565259","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"84e73595-4680-4751-8e54-81b9209b5989","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl","description":"<p>Return all Transfer ACL's configured in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","transferAcl"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"b4f941d4-3cdd-4b80-9e15-e5e89ac2abc5","name":"Transfer ACL GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 21:29:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"0d8efe19-969c-4a57-8575-962659c4ab02"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=C9DC48CA46A676F6AA7DD8D8940A1B1E; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 2,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"ips\": [\n                \"10.10.10.2\",\n                \"192.168.1.24\"\n            ],\n            \"name\": \"ACL 2\",\n            \"id\": 6792\n        },\n        {\n            \"ips\": [\n                \"192.168.1.1\",\n                \"10.10.10.0/24\",\n                \"127.0.0.1\"\n            ],\n            \"name\": \"test ACL\",\n            \"id\": 6791\n        }\n    ],\n    \"page\": 1\n}"}],"_postman_id":"84e73595-4680-4751-8e54-81b9209b5989"},{"name":"Transfer ACL GET Single","event":[{"listen":"prerequest","script":{"id":"899c6e8a-a80d-4740-83a1-f8092587106f","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"bea48444-991e-491e-985c-676c9f068a4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6791","description":"<p>Return a single Transfer ACL's with Id 6791.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","transferAcl","6791"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"030bc090-7f40-49a1-a525-4ba4ffb689ff","name":"Transfer ACL GET Single","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6791"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 21:31:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"1ffc1bfd-e2ac-4e75-98d5-e30010656327"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=B56986C6B5B9A77AC9764A6932276EC4; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"ips\": [\n        \"192.168.1.1\",\n        \"10.10.10.0/24\",\n        \"127.0.0.1\"\n    ],\n    \"name\": \"test ACL\",\n    \"id\": 6791\n}"}],"_postman_id":"bea48444-991e-491e-985c-676c9f068a4e"},{"name":"Transfer ACL Create","event":[{"listen":"prerequest","script":{"id":"ef2499c2-9f9c-4ca4-875a-54f1785ce142","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"e7e24714-29a2-4c28-baba-817d497bd852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"ips\": [\n        \"192.168.1.1\",\n        \"10.10.10.0\",\n        \"127.0.0.1\"\n    ],\n    \"name\": \"ACL 3\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/","description":"<p>Create a new Transfer ACL.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","transferAcl",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"98e2fa02-f789-48b9-b76e-0fc264520f30","name":"Transfer ACL Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"ips\": [\n        \"192.168.1.1\",\n        \"10.10.10.0\",\n        \"127.0.0.1\"\n    ],\n    \"name\": \"ACL 3\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 23:01:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"c4ad37a4-015d-4e08-bf69-db09d76db266"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=9811608F8DC00A25A0468E0D989398E6; Path=/V2.0; HttpOnly"},{"key":"Location","value":"http://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6793"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"ips\": [\n        \"192.168.1.1\",\n        \"10.10.10.0\",\n        \"127.0.0.1\"\n    ],\n    \"name\": \"ACL 3\",\n    \"id\": 6793\n}"}],"_postman_id":"e7e24714-29a2-4c28-baba-817d497bd852"},{"name":"Transfer ACL Update","event":[{"listen":"prerequest","script":{"id":"7cbcdf2b-b17b-4e53-8cce-3a7fb7ddab27","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"3f7b0f9c-5843-4dff-ac25-ec21aab40c33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"ips\": [\n        \"192.168.1.2\",\n        \"10.10.10.2\",\n        \"127.0.0.2\"\n    ],\n    \"name\": \"ACL 3\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6793/","description":"<p>Update a Transfer ACL configuration with id 6793.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","transferAcl","6793",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"d4ded50f-d40d-4687-a34a-2c2db3204c6a","name":"Transfer ACL Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\n    \"ips\": [\n        \"192.168.1.2\",\n        \"10.10.10.2\",\n        \"127.0.0.2\"\n    ],\n    \"name\": \"ACL 3\"\n}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6793/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 23:02:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"7c1d89bd-9113-40ec-a40f-7ebf05400870"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=4F0BFDEB154886F43EA8C0A6E6BB573C; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f7b0f9c-5843-4dff-ac25-ec21aab40c33"},{"name":"Delete Transfer ACL","event":[{"listen":"prerequest","script":{"id":"f6b344de-a396-4c0d-b325-a2671167a9f2","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"70cd6e7a-0b2e-41fb-8be5-774544784cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6793","description":"<p>Delete a Transfer ACL with ID 6793.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","transferAcl","6793"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"7224e5bc-c83a-4868-9504-f7738902f500","name":"Delete Transfer ACL","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/transferAcl/6793"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 23:05:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"38253780-7520-4202-aaa3-ea5a0896ef56"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=C90241B8A72BECC19AAC6C1F824DD97E; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"70cd6e7a-0b2e-41fb-8be5-774544784cfb"}],"id":"30a53355-3f25-4d26-be06-75d6e0a44599","description":"<p>The Account ACL data type contains parameters for Access Control Lists defined for the account.</p>\n<table>\n<tr><th><i>/dns/transferAcl/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>name</i></td>\n<td>String</td>\n<td>ACL Identifiable name</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>Numeric</td>\n<td>Identifier (system defined)</td>\n</tr>\n<tr>\n<td><i>ips</i></td>\n<td>Numeric</td>\n<td>The IP addresses defined in the ACL</td>\n</tr>\n</table>","_postman_id":"30a53355-3f25-4d26-be06-75d6e0a44599"},{"name":"Folder Actions","item":[{"name":"Folder GET All","event":[{"listen":"prerequest","script":{"id":"34111100-216e-406a-b3e7-2e47e25ac4df","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"05e0eacb-1346-4cc0-8d84-e1f0254e6a6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/","description":"<p>Display a full list of all folders created in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","security","folder",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"67623d8a-44c8-4545-9ec0-0fda3eace844","name":"Folder GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 23:10:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"396720ec-5ff4-4cc2-afd8-5e878eac3f86"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=E5BB0598944342818DA01C1F498DF1BD; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"label\": \"Default\",\n        \"value\": 149146\n    },\n    {\n        \"label\": \"Folder 1\",\n        \"value\": 157598\n    },\n    {\n        \"label\": \"Folder 2\",\n        \"value\": 157599\n    },\n    {\n        \"label\": \"Folder 3\",\n        \"value\": 157600\n    },\n    {\n        \"label\": \"Folder 4\",\n        \"value\": 157601\n    }\n]"}],"_postman_id":"05e0eacb-1346-4cc0-8d84-e1f0254e6a6c"},{"name":"Folder GET Single","event":[{"listen":"prerequest","script":{"id":"2e8e3aa6-eb8c-4775-901d-adba8552e640","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"8dbd05b0-094b-48f4-b015-f6a3e81621b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/157599/","description":"<p>Display a single folder created in an account by folderId (ex:157599).</p>\n","urlObject":{"protocol":"https","path":["V2.0","security","folder","157599",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"20b20fd2-1bdf-418f-ab2f-eb23e2d9b323","name":"Folder GET Single","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/157599/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Mar 2021 23:11:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"4c7833ff-371b-4780-be71-786cee7baada"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=2BCEC8E31688808755445E46CB7FB0B5; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"secondaries\": [],\n    \"folderPermissions\": [\n        {\n            \"folderName\": \"Folder 2\",\n            \"folderId\": 157599,\n            \"groupId\": 157254,\n            \"groupName\": \"group1\",\n            \"permission\": 6\n        },\n        {\n            \"folderName\": \"Folder 2\",\n            \"folderId\": 157599,\n            \"groupId\": 148834,\n            \"groupName\": \"Default\",\n            \"permission\": 7\n        },\n        {\n            \"folderName\": \"Folder 2\",\n            \"folderId\": 157599,\n            \"groupId\": 157255,\n            \"groupName\": \"group2\",\n            \"permission\": 6\n        }\n    ],\n    \"domains\": [\n        7445784,\n        7450637,\n        7450636\n    ],\n    \"defaultFolder\": false,\n    \"name\": \"Folder 2\",\n    \"id\": 157599\n}"}],"_postman_id":"8dbd05b0-094b-48f4-b015-f6a3e81621b8"},{"name":"Folder Update","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"874fef3b-18ef-4b2a-a2d6-87b627332dda","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"Update Folder\",\"id\":92626,\"defaultFolder\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/92626/","description":"<p>Update a single folder in an account by folderId.</p>\n","urlObject":{"protocol":"https","path":["V2.0","security","folder","92626",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"2a14cb9b-ecf3-422b-bca9-515d5fa56ed9","name":"Folder Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\":\"Update Folder\",\"id\":92626,\"defaultFolder\":false}","options":{"raw":{"language":"json"}}},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/92626/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:49:21 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=F5EA63C1BAD46403D3927B06A859F3B0; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"d604e429-fde1-4c9b-859e-bbd1779f1878","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"146","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"F5EA63C1BAD46403D3927B06A859F3B0","key":"JSESSIONID"}],"responseTime":"436","body":""}],"_postman_id":"874fef3b-18ef-4b2a-a2d6-87b627332dda"},{"name":"Folder Create","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"23a74609-3463-4015-8de5-14e6e807ccd9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"New Folder Create\",\"domains\":[1119443],\"defaultFolder\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/","description":"<p>Create a new folder in an account and add a domain to it.</p>\n","urlObject":{"protocol":"https","path":["V2.0","security","folder",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"9f619ca7-95ef-4ba6-a86c-5539876a2bc3","name":"Folder Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\":\"New Folder Add\",\"domains\":[1119443],\"defaultFolder\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:50:14 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/security/folder/124531","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=65DF5DDFB5E50495E6A23A540158DF52; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"bc8e91ed-57cf-4e50-b5b2-a2158c2da87b","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"65DF5DDFB5E50495E6A23A540158DF52","key":"JSESSIONID"}],"responseTime":"470","body":"{\"folderPermissions\":[{\"folderId\":124531,\"folderName\":\"New Folder Add\"}],\"secondaries\":[],\"domains\":[1119443],\"defaultFolder\":false,\"name\":\"New Folder Add\",\"id\":124531}"}],"_postman_id":"23a74609-3463-4015-8de5-14e6e807ccd9"},{"name":"Folder Delete","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"ec357fa7-0ecf-412a-ab45-6e5b300134db","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/93186","description":"<p>Delete a folder in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","security","folder","93186"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"916616aa-f616-4ba0-8003-f3679e4783ce","name":"Folder Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/security/folder/93186"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:55:10 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"x-dnsme-requestId","value":"9a32dccc-8426-4d21-8220-069a59eac070","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"144","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"4D184956BFB6B27D128E13AB430C5F7C","key":"JSESSIONID"}],"responseTime":"718","body":""}],"_postman_id":"ec357fa7-0ecf-412a-ab45-6e5b300134db"}],"id":"c3a08f38-1413-43cc-9663-f866ef1afdab","description":"<p>The Folder data type contains parameters for managing domain folders defined in the account. The available fields are:</p>\n<table>\n<tr><th><i>/security/folder/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>value</i></td>\n<td>Numeric</td>\n<td>Identifier (system defined)</td>\n</tr>\n<tr>\n<td><i>label</i></td>\n<td>String</td>\n<td>The name of the folder</td>\n</tr>\n<tr><th><i>/security/folder/</i></th></tr>\n<tr>\n<td><i>name</i></td>\n<td>String</td>\n<td>The name of the folder</td>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>String</td>\n<td>The ID of the folder</td>\n</tr>\n<tr>\n<td><i>Domains</i></td>\n<td>List of Strings</td>\n<td>A list of the primary domain ID's assigned to the folder</td>\n</tr>\n<tr>\n<td><i>secondaries</i></td>\n<td>List of Strings</td>\n<td>A list of the secondary domain ID's assigned to the folder</td>\n</tr>\n<tr>\n<td><i>folderPermissions</i></td>\n<td>List of Strings</td>\n<td>A list of permissions for the folder</td>\n</tr>\n<tr>\n<td><i>defaultFolder</i></td>\n<td>Boolean</td>\n<td>Indicator of the folder being marked as the Default folder</td>\n</tr>\n</table>","_postman_id":"c3a08f38-1413-43cc-9663-f866ef1afdab"},{"name":"Query Usage Actions","item":[{"name":"Query Usage GET All","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"4ceb9aab-4258-4e08-b580-d3ba5d33407b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/","description":"<p>Return a full list of query usage for an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","usageApi","queriesApi",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"01b7323b-5d04-4a90-ab8a-4da3aae8c20d","name":"Query Usage GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:56:07 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=9DC88F054D3571F1CD2A626EED350A9D; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"713c8b2b-fbba-4467-8f44-8bc955248820","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"145","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"9DC88F054D3571F1CD2A626EED350A9D","key":"JSESSIONID"}],"responseTime":"158","body":"[{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":185},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":270},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":296},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":141},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":233},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":287},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":284},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":259},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":235},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2009,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":222},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":355},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1456},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1890},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1008},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1088},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1007},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1866},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2195},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2496},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2181},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1079},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2010,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1049},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3096},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4879},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3583},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3410},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2969},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3050},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3446},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3252},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":6379},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":6296},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":6939},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2011,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":9980},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":8004},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":5078},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":6741},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4450},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4292},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3933},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":5680},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":5980},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4150},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3166},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":9999},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2012,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4577},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2588},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2528},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2941},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3474},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":139209},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1597},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1660},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2779},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3654},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1179},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1398},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2013,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1349},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3375},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3657},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3312},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":4,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3196},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":5,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":55249},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":64195},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":63755},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":68025},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":9,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":59947},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":39147},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":11,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":2407068},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":12,\"year\":2014,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":4369633},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":1,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":3274070},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":5319},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":6,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":41},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":7,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":1199},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":8,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":118},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":10,\"year\":2015,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":678},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2017,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":7},{\"primaryCount\":0,\"primaryTotal\":0,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":3,\"year\":2017,\"day\":null,\"accountId\":46997,\"id\":null,\"total\":371}]"}],"_postman_id":"4ceb9aab-4258-4e08-b580-d3ba5d33407b"},{"name":"Query Usage GET Single Month","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"39e98721-c3a4-4111-bdec-7dd93e4e22d5","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/2017/2","description":"<p>Return a list of query usage for an account for a single month of Febuary 2017.</p>\n","urlObject":{"protocol":"https","path":["V2.0","usageApi","queriesApi","2017","2"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"aafeb041-5cd2-4d48-a6c4-0b2a4a6a00c3","name":"Query Usage GET Single Month","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/2017/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 17:57:00 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=90501D2D0B39AF7EFBAAFE8E99553FA9; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"6e32d629-9322-40d3-aeff-48f34b464e97","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"144","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"90501D2D0B39AF7EFBAAFE8E99553FA9","key":"JSESSIONID"}],"responseTime":"314","body":"[{\"primaryCount\":2,\"primaryTotal\":7,\"secondaryCount\":0,\"secondaryTotal\":0,\"listOfMonths\":null,\"listOfYears\":null,\"month\":2,\"year\":2017,\"day\":28,\"accountId\":46997,\"id\":null,\"total\":0}]"}],"_postman_id":"39e98721-c3a4-4111-bdec-7dd93e4e22d5"},{"name":"Query Usage GET Single Month for a Single Domain","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"d87ff1ef-0854-476c-a809-68e5b14be655","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/2017/10/managed/1119443","description":"<p>Return a list of query usage for an account for a single month of October 2017 for a single domain with domainId 1119443.</p>\n","urlObject":{"protocol":"https","path":["V2.0","usageApi","queriesApi","2017","10","managed","1119443"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"647113fd-3fdc-4b99-9319-8900deca6f5a","name":"Query Usage GET Single Month for a Single Domain","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/usageApi/queriesApi/2017/10/managed/1119443"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:30:56 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=F93A7A8AA8720F0D1135650C31163B16; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"853bc948-a387-4f9a-8b59-b64c63f5b019","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"149","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"F93A7A8AA8720F0D1135650C31163B16","key":"JSESSIONID"}],"responseTime":"221","body":"[]"}],"_postman_id":"d87ff1ef-0854-476c-a809-68e5b14be655"}],"id":"6cf6e7eb-7ab8-4de2-a202-d36039628a06","description":"<p>The query usage data type contains information for account query usage by month, day, domain, or per month per domain. The available fields are:</p>\n<table>\n<tr><th><i>/usageApi/queriesApi/</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>id</i></td>\n<td>Numeric</td>\n<td>Identifier</td>\n</tr>\n<tr>\n<td><i>total</i></td>\n<td>Numeric</td>\n<td>Query total for the specified day/month/year</td>\n</tr>\n<tr>\n<td><i>month</i></td>\n<td>Numeric</td>\n<td>Month of the year</td>\n</tr>\n<tr>\n<td><i>day</i></td>\n<td>Numeric</td>\n<td>Day of the month</td>\n</tr>\n<tr>\n<td><i>year</i></td>\n<td>Numeric</td>\n<td>Year</td>\n</tr>\n<tr>\n<td><i>accountId</i></td>\n<td>Numeric</td>\n<td>Account Identifier</td>\n</tr>\n<tr>\n<td><i>primaryCount</i></td>\n<td>Numeric</td>\n<td>Query count for primary DNS domains</td>\n</tr>\n<tr>\n<td><i>primaryTotal</i></td>\n<td>Numeric</td>\n<td>Query count for total of primary DNS domains</td>\n</tr>\n<tr>\n<td><i>secoundaryCount</i></td>\n<td>Numeric</td>\n<td>Query count of secondary DNS domains</td>\n</tr>\n<tr>\n<td><i>secondaryTotal</i></td>\n<td>Numeric</td>\n<td>Query count for total of secondary DNS domains</td>\n</tr>\n</table>","_postman_id":"6cf6e7eb-7ab8-4de2-a202-d36039628a06"},{"name":"DNS Failover Actions","item":[{"name":"Failover GET","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"b0a84af2-3bed-4b97-81cd-da6365d4aa0a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/monitor/57181329","description":"<p>Return a DNS failover configuration for a record by recordId.</p>\n","urlObject":{"protocol":"https","path":["V2.0","monitor","57181329"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"01bdb0e0-1a43-4a99-a819-a3fcaa24e99f","name":"Failover GET","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"url":"https://api.dnsmadeeasy.com/V2.0/monitor/57181329"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:42:36 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=4991A13FFCFB5E555B945F99710DCB8A; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"b852f615-7c35-452f-8cfa-812a3811c995","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"149","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"4991A13FFCFB5E555B945F99710DCB8A","key":"JSESSIONID"}],"responseTime":"194","body":"{\"sensitivity\":5,\"autoFailover\":false,\"ip1Failed\":2,\"ip2Failed\":2,\"ip3Failed\":0,\"ip4Failed\":0,\"ip5Failed\":0,\"maxEmails\":1,\"protocolId\":3,\"recordId\":57181329,\"systemDescription\":\"Test\",\"source\":1,\"ip1\":\"192.168.1.2\",\"ip2\":\"10.10.10.11\",\"sourceId\":1119443,\"failover\":true,\"monitor\":true,\"port\":8080}"}],"_postman_id":"b0a84af2-3bed-4b97-81cd-da6365d4aa0a"},{"name":"Failover Update","event":[{"listen":"prerequest","script":{"id":"821bc5a0-fcf9-4ef3-86d1-6d26a02970ae","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"dc88d250-cf6a-41ea-87b6-0921cbb65ea0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"port\":8080,\"failover\":true,\"ip1\":\"192.168.1.1\",\"ip2\":\"10.10.10.10\",\"protocolId\":3,\"monitor\":true,\"sensitivity\":5,\"systemDescription\":\"Test\",\"maxEmails\":1,\"autoFailover\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/monitor/57181329","description":"<p>Update a DNS failover configuration for a record by recordId. To turn off failover, update \"failover\":true to \"failover\":false</p>\n","urlObject":{"protocol":"https","path":["V2.0","monitor","57181329"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"08ae8c72-a53c-4521-b921-3cee34fb2f49","name":"Failover Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"port\":8080,\"failover\":true,\"ip1\":\"192.168.1.1\",\"ip2\":\"10.10.10.10\",\"protocolId\":3,\"monitor\":true,\"sensitivity\":5,\"systemDescription\":\"Test\",\"maxEmails\":1,\"autoFailover\":false}"},"url":"https://api.dnsmadeeasy.com/V2.0/monitor/57181329"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:43:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=269C74E1C795A78FE6E014629943E693; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"a601b5cd-827c-431e-8e4a-4505105acce5","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"148","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"269C74E1C795A78FE6E014629943E693","key":"JSESSIONID"}],"responseTime":"144","body":""}],"_postman_id":"dc88d250-cf6a-41ea-87b6-0921cbb65ea0"}],"id":"e6e79f95-461f-45f0-910f-cd0d542cfcdb","description":"<p>The Failover data type contains parameters for DNS Failover and System Monitoring configuration. The available fields are:</p>\n<table>\n<tr><th><i>/monitor</i></th></tr>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><i>monitor</i></td>\n<td>Boolean</td>\n<td>True indicates System Monitoring is Enabled</td>\n</tr>\n<tr>\n<td><i>recordId</i></td>\n<td>Numeric</td>\n<td>The ID of the record with failover configured</td>\n</tr>\n<tr>\n<td><i>systemDescription</i></td>\n<td>String</td>\n<td>The system description of the failover configuration</td>\n</tr>\n<tr>\n<td><i>maxEmails</i></td>\n<td>Numeric</td>\n<td>The maximum number of emails to send per failover event</td>\n</tr>\n<tr>\n<td><i>sensitivity</i></td>\n<td>Numeric</td>\n<td>The number of checks placed against the primary IP before a Failover event occurs. List of Sensitivity ID’s:\n    Low (slower failover) = 8\n    Medium = 5\n    High = 3\n</td>\n</tr>\n<tr>\n<td><i>protocolId</i></td>\n<td>Numeric</td>\n<td>The protocol for DNS Failover to monitor on. List of Protocol IDs:\n    TCP = 1\n    UDP = 2\n    HTTP = 3\n    DNS = 4\n    SMTP = 5\n    HTTPS = 6\n</td>\n</tr>\n<tr>\n<td><i>port</i></td>\n<td>Numeric</td>\n<td>The port for the DNS Failover service to monitor on the specified protocol</td>\n</tr>\n<tr>\n<td><i>failover</i></td>\n<td>Boolean</td>\n<td>True indicates DNS Failover is enabled</td>\n</tr>\n<tr>\n<td><i>autoFailover</i></td>\n<td>Boolean</td>\n<td>True indicates the failback to the primary IP address is a manual process. False indicates the failback to the primary IP is an automatic process.</td>\n</tr>\n<tr>\n<td><i>ip1</i></td>\n<td>Numeric</td>\n<td>The primary IP address</td>\n</tr>\n<tr>\n<td><i>ip2</i></td>\n<td>Numeric</td>\n<td>The secondary IP address</td>\n</tr>\n<tr>\n<td><i>ip3</i></td>\n<td>Numeric</td>\n<td>The teriary IP address</td>\n</tr>\n<tr>\n<td><i>ip4</i></td>\n<td>Numeric</td>\n<td>The quaternary IP address</td>\n</tr>\n<tr>\n<td><i>ip5</i></td>\n<td>Numeric</td>\n<td>The quinary IP address</td>\n</tr>\n<tr>\n<td><i>Ip1Failed</i></td>\n<td>Numeric</td>\n<td>Indicates if IP is currently in failed status and\nhow many times it has failed.</td>\n</tr>\n<tr>\n<td><i>Ip2Failed</i></td>\n<td>Numeric</td>\n<td>Indicates if IP is currently in failed status and\nhow many times it has failed.</td>\n</tr>\n<tr>\n<td><i>Ip3Failed</i></td>\n<td>Numeric</td>\n<td>Indicates if IP is currently in failed status and\nhow many times it has failed.</td>\n</tr>\n<tr>\n<td><i>Ip4Failed</i></td>\n<td>Numeric</td>\n<td>Indicates if IP is currently in failed status and\nhow many times it has failed.</td>\n</tr>\n<tr>\n<td><i>Ip5Failed</i></td>\n<td>Numeric</td>\n<td>Indicates if IP is currently in failed status and\nhow many times it has failed.</td>\n</tr>\n<tr>\n<td><i>source</i></td>\n<td>Numeric</td>\n<td>1 indicates the record is part of the domain, 0\nindicates the record is part of a template</td>\n</tr>\n<tr>\n<td><i>sourceId</i></td>\n<td>Numeric</td>\n<td>The source ID of the domain or template for\nthe record.</td>\n</tr>\n<tr>\n<td><i>contactListId</i></td>\n<td>Numeric</td>\n<td>The ID of the contact list for system monitoring notifications</td>\n</tr>\n<tr>\n<td><i>httpFqdn</i></td>\n<td>String</td>\n<td>The FQDN to monitor for HTTP or HTTPS checks.</td>\n</tr>\n<tr>\n<td><i>httpFile</i></td>\n<td>String</td>\n<td>The file to query for HTTP or HTTPS checks.</td>\n</tr>\n<tr>\n<td><i>httpQueryString</i></td>\n<td>String</td>\n<td>The string to query for HTTP or HTTPS checks.</td>\n</tr>\n</table>","_postman_id":"e6e79f95-461f-45f0-910f-cd0d542cfcdb"},{"name":"Secondary DNS Actions","item":[{"name":"Secondary DNS GET All","event":[{"listen":"prerequest","script":{"id":"ce3cec26-21f6-4db0-9d41-90a76a31dd70","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"50ecf3d4-c924-41ee-b790-972510df4edd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary","description":"<p>Return a list of all secondary DNS domains configured in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"a16a0f80-b617-4588-9c6e-90ac3ff8df38","name":"Secondary DNS GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Mar 2021 17:08:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"9bfef4bc-6e0a-4447-a50c-067f01d4b86b"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=965078717CD22FBAA13A1158C7095735; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 2,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"ipSetId\": 22440,\n            \"created\": 1605225600000,\n            \"folderId\": 149146,\n            \"gtdEnabled\": false,\n            \"updated\": 1612396800000,\n            \"pendingActionId\": 0,\n            \"name\": \"asfgagawfgasdf.com\",\n            \"id\": 135839\n        },\n        {\n            \"ipSetId\": 22440,\n            \"created\": 1611792000000,\n            \"folderId\": 157598,\n            \"gtdEnabled\": false,\n            \"updated\": 1612396800000,\n            \"pendingActionId\": 0,\n            \"name\": \"cnsecondary.com\",\n            \"id\": 136952\n        }\n    ],\n    \"page\": 0\n}"}],"_postman_id":"50ecf3d4-c924-41ee-b790-972510df4edd"},{"name":"Secondary DNS GET Single","event":[{"listen":"prerequest","script":{"id":"cf5101bc-0301-4e0d-8810-f8ac8adc7426","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"6329438a-2367-4e8e-bf9b-f31ed4461199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/136952","description":"<p>Return a single secondary DNS domain by domainId.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","136952"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"d7ad5390-0db3-407c-917e-0e3b9067c742","name":"Secondary DNS GET Single","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/136952"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Mar 2021 20:44:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"089a15d4-33c0-4532-9215-8438df32a74f"},{"key":"x-dnsme-requestsRemaining","value":"149"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=E5E2EC70511C730E4542F6D9E816D49C; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"ipSet\": {\n        \"ips\": [\n            \"127.0.0.123\"\n        ],\n        \"name\": \"IP Set 1\",\n        \"id\": 22440\n    },\n    \"ipSetId\": 22440,\n    \"created\": 1611792000000,\n    \"folderId\": 157598,\n    \"gtdEnabled\": false,\n    \"nameServers\": [\n        {\n            \"ipv6\": \"2600:1800:5::1\",\n            \"ipv4\": \"208.94.148.13\",\n            \"fqdn\": \"ns5.dnsmadeeasy.com\",\n            \"groupId\": 100,\n            \"id\": 6\n        },\n        {\n            \"ipv6\": \"2600:1801:6::1\",\n            \"ipv4\": \"208.80.124.13\",\n            \"fqdn\": \"ns6.dnsmadeeasy.com\",\n            \"groupId\": 100,\n            \"id\": 7\n        },\n        {\n            \"ipv6\": \"2600:1802:7::1\",\n            \"ipv4\": \"208.80.126.13\",\n            \"fqdn\": \"ns7.dnsmadeeasy.com\",\n            \"groupId\": 100,\n            \"id\": 8\n        }\n    ],\n    \"updated\": 1614816000000,\n    \"pendingActionId\": 2,\n    \"name\": \"cnsecondary.com\",\n    \"id\": 136952\n}"}],"_postman_id":"6329438a-2367-4e8e-bf9b-f31ed4461199"},{"name":"Change the IP Set of a Secondary DNS Domain","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"494a0acd-0452-4e05-bf4c-15a0fdd48724","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"ids\":[\"93816\",\"103392\"],\"ipSetId\":\"11341\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/","description":"<p>Update the assigned IP set of a secondary DNS domain by domainId.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"427b304e-7478-482d-8559-3a79002d5827","name":"Change the IP Set of a Secondary DNS Domain","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"ids\":[\"93816\",\"103392\"],\"ipSetId\":\"11341\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:48:13 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=029EB4DA36D2A2E3250DFAA5923A784A; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"e8002491-29a0-4d15-b457-646a51c40d95","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"142","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"029EB4DA36D2A2E3250DFAA5923A784A","key":"JSESSIONID"}],"responseTime":"422","body":""}],"_postman_id":"494a0acd-0452-4e05-bf4c-15a0fdd48724"},{"name":"Secondary DNS Create","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"957dbdc4-e8a7-45be-aff8-88886b303805","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"names\":[\"testingdomain125.com\",\"testingdomain126.com\"],\"ipSetId\":\"11341\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/","description":"<p>Create a secondary DNS domain and assign an IP Set.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"899e5be5-52d3-4fab-bed1-90952fde745a","name":"Secondary DNS Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"names\":[\"testingdomain125.com\",\"testingdomain126.com\"],\"ipSetId\":\"11341\"}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:48:57 GMT","name":"Date","description":""},{"key":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/","name":"Location","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=439A59CB66E89BF644AD052D207FD1E8; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"x-dnsme-requestId","value":"8362f429-f021-4b49-b64a-f0e094ede59b","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"142","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"439A59CB66E89BF644AD052D207FD1E8","key":"JSESSIONID"}],"responseTime":"490","body":"[106111,106112]"}],"_postman_id":"957dbdc4-e8a7-45be-aff8-88886b303805"},{"name":"Secondary DNS Delete","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"b297048b-5065-4666-9e6d-a9a08600d847","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/103393","description":"<p>Delete a secondary DNS domain by domainId.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","103393"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"639790ed-bf56-47b7-8cbe-89adac8629ee","name":"Secondary DNS Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/103393"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:49:21 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=1E4F0B157464B04921D1F7CA240E5698; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"0e01ee21-dbd6-49f1-9d39-f7ae889b2ba8","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"141","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"1E4F0B157464B04921D1F7CA240E5698","key":"JSESSIONID"}],"responseTime":"516","body":""}],"_postman_id":"b297048b-5065-4666-9e6d-a9a08600d847"}],"id":"25945254-4544-433d-9e1e-886ffcc86f77","description":"<p>This is a set of calls to perform actions on secondary DNS domains.</p>\n<table>\n<tr><th><i>/dns/secondary</i></th></tr>\n</table>","_postman_id":"25945254-4544-433d-9e1e-886ffcc86f77"},{"name":"Secondary IP Set Actions","item":[{"name":"IP Set GET All","event":[{"listen":"prerequest","script":{"id":"1d3b6a11-6bfa-4b38-9d97-72e9eee87ddf","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"671bbdae-ac2e-42b8-8103-13bd5656caa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet","description":"<p>Return a list of all configured secondary IP Sets in an account.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","ipSet"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"9747aa21-2b95-4787-a3e6-f25e94fa2c1b","name":"IP Set GET All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Mar 2021 20:48:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"845fa0b0-c89e-4a0a-8c09-a334691b59b7"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=583889BFA18031DF441C163A46563076; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalRecords\": 2,\n    \"totalPages\": 1,\n    \"data\": [\n        {\n            \"ips\": [\n                \"127.0.0.123\"\n            ],\n            \"name\": \"IP Set 1\",\n            \"id\": 22440\n        },\n        {\n            \"ips\": [\n                \"10.10.10.10\",\n                \"10.10.10.11\"\n            ],\n            \"name\": \"IP Set 2\",\n            \"id\": 22776\n        }\n    ],\n    \"page\": 1\n}"}],"_postman_id":"671bbdae-ac2e-42b8-8103-13bd5656caa3"},{"name":"IP Set GET Single","event":[{"listen":"prerequest","script":{"id":"a344fc8e-fc1d-48e3-ac34-0b0bfa94dceb","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"bc6ddecb-a033-46d3-9d0c-aca1ef92fd93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/22776","description":"<p>Return a list a single secondary IP Set by ID.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","ipSet","22776"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"af57434e-2a61-4dc6-99f2-af1b148c4da2","name":"IP Set GET Single","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/22776"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Mar 2021 20:49:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"66729e9f-ba00-4abb-82e8-26cbab239d39"},{"key":"x-dnsme-requestsRemaining","value":"148"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=620D53AF7CD78268B94FBCE66D267522; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":"{\n    \"ips\": [\n        \"10.10.10.10\",\n        \"10.10.10.11\"\n    ],\n    \"name\": \"IP Set 2\",\n    \"id\": 22776\n}"}],"_postman_id":"bc6ddecb-a033-46d3-9d0c-aca1ef92fd93"},{"name":"IP Set Update","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"9aa0ad85-01c0-4908-aa4b-c79ff43ffeb4","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"IP Set Update\",\"id\":11341,\"ips\":[\"2.2.2.1\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/11341","description":"<p>Update a single secondary IP Set by ID.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","ipSet","11341"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"2c9baf11-3fd3-4ac4-820a-2384e5ffe71d","name":"IP Set Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\":\"IP Set Update\",\"id\":11341,\"ips\":[\"2.2.2.1\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/11341"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Mar 2018 18:51:10 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Set-Cookie","value":"JSESSIONID=AC28DDF86B3E9A119AF97117D2E1E2C2; Path=/V2.0; Secure; HttpOnly","name":"Set-Cookie","description":""},{"key":"x-dnsme-requestId","value":"f82b7161-0db1-4475-95a1-5077c8e679ff","name":"x-dnsme-requestId","description":""},{"key":"x-dnsme-requestLimit","value":"150","name":"x-dnsme-requestLimit","description":""},{"key":"x-dnsme-requestsRemaining","value":"141","name":"x-dnsme-requestsRemaining","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"AC28DDF86B3E9A119AF97117D2E1E2C2","key":"JSESSIONID"}],"responseTime":"364","body":""}],"_postman_id":"9aa0ad85-01c0-4908-aa4b-c79ff43ffeb4"},{"name":"IP Set Create","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}}],"id":"21bc60d4-2033-4a6c-9cd8-1ac8065bbecd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":"{\"name\":\"IP Set Create\",\"ips\":[\"2.2.2.1\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/","description":"<p>Create a new secondary IP Set.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","ipSet",""],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"990a2826-9bee-474c-bbbd-b1687c3e8870","name":"IP Set Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"x-dnsme-hmac","value":"{{hmac}}","disabled":false},{"key":"x-dnsme-apiKey","value":"{{apiKey}}","disabled":false},{"key":"x-dnsme-requestDate","value":"{{time}}","disabled":false}],"body":{"mode":"raw","raw":"{\"name\":\"My New IP Set\",\"ips\":[\"2.2.2.1\"]}"},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","name":"Content-Type","value":"application/json"},{"description":"","key":"Date","name":"Date","value":"Tue, 06 Mar 2018 18:58:47 GMT"},{"description":"","key":"Location","name":"Location","value":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/20966"},{"description":"","key":"Server","name":"Server","value":"Apache-Coyote/1.1"},{"description":"","key":"Set-Cookie","name":"Set-Cookie","value":"JSESSIONID=8B73F8CF13A0D4681F2A20A20DADB02B; Path=/V2.0; Secure; HttpOnly"},{"description":"","key":"Transfer-Encoding","name":"Transfer-Encoding","value":"chunked"},{"description":"","key":"x-dnsme-requestId","name":"x-dnsme-requestId","value":"c4a76998-9cf5-448b-9176-a9988df18ced"},{"description":"","key":"x-dnsme-requestLimit","name":"x-dnsme-requestLimit","value":"150"},{"description":"","key":"x-dnsme-requestsRemaining","name":"x-dnsme-requestsRemaining","value":"148"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"api.dnsmadeeasy.com","path":"/V2.0","secure":true,"value":"8B73F8CF13A0D4681F2A20A20DADB02B","key":"JSESSIONID"}],"responseTime":"294","body":"{\"ips\":[\"2.2.2.1\"],\"name\":\"My New IP Set\",\"id\":20966}"}],"_postman_id":"21bc60d4-2033-4a6c-9cd8-1ac8065bbecd"},{"name":"IP Set Delete","event":[{"listen":"prerequest","script":{"id":"96c401ad-cf0d-4631-86d4-0ca48a03c2a5","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""],"type":"text/javascript"}}],"id":"7a0c6f3f-f3f0-484b-a236-22b9e2d72d03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/22776","description":"<p>Delete a secondary IP Set by ID.</p>\n","urlObject":{"protocol":"https","path":["V2.0","dns","secondary","ipSet","22776"],"host":["api","dnsmadeeasy","com"],"query":[],"variable":[]}},"response":[{"id":"06b4ba94-eeba-4678-b449-1da27b52f310","name":"IP Set Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-dnsme-hmac","value":"{{hmac}}"},{"key":"x-dnsme-apiKey","value":"{{apiKey}}"},{"key":"x-dnsme-requestDate","value":"{{time}}"}],"body":{"mode":"raw","raw":""},"url":"https://api.dnsmadeeasy.com/V2.0/dns/secondary/ipSet/22776"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Mar 2021 20:50:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"x-dnsme-requestId","value":"5e782724-4541-4c7c-ab27-771661e3c18b"},{"key":"x-dnsme-requestsRemaining","value":"147"},{"key":"x-dnsme-requestLimit","value":"150"},{"key":"Set-Cookie","value":"JSESSIONID=1740F40A7444130187B88B2BAD84FB24; Path=/V2.0; HttpOnly"},{"key":"Server","value":"DNSME API"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7a0c6f3f-f3f0-484b-a236-22b9e2d72d03"}],"id":"e7a4fbf8-ac05-4e37-857d-2c6f1b866abe","description":"<p>This is set of calls to update/create/delete Secondary DNS IP Sets.</p>\n<table>\n<tr><th><i>/dns/ipSet</i></th></tr>\n</table>","_postman_id":"e7a4fbf8-ac05-4e37-857d-2c6f1b866abe"},{"name":"login","id":"aab81708-7d32-4d11-bd68-1e169f5d55ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"aab81708-7d32-4d11-bd68-1e169f5d55ed"}],"id":"cdbc68b7-5acf-4767-b818-6696fc67d937","description":"<p>The following is a detailed listing of all data types used for requests and responses with the DNS Made Easy API. Not seeing a specific example API call you are looking for? Please contact &lt;a mailto: <a href=\"mailto:sales@dnsmadeeasy.com\">sales@dnsmadeeasy.com</a>&gt;DNS Made Easy Sales to request it be added.</p>\n","_postman_id":"cdbc68b7-5acf-4767-b818-6696fc67d937"},{"name":"Resources and Methods","item":[],"id":"cfad85cc-474e-4b40-9afa-44a8c3740e58","description":"<p>The following resources and methods are available with the DNS Made Easy API:</p>\n<table>\n<tr><th><i>/dns/managed – operate on multiple domains for your account</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns a list of all domain names for your account.</td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates multiple domains based on the\nidentifiers in the ids field. The following values can be updated for all domains provided in the list:\n    Global Traffic Director (Boolean)\n    Applied Template (numeric ID)\n    Vanity NS Config (numeric ID)\n    Custom SOA Record (numeric ID)\n    Zone Transfer (numeric ID)\n    Folder (numeric ID)\n</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>200-OK</td>\n<td>Deletes all domains in the account</td>\n</tr>\n<tr>\n<td><b>POST</b></td>\n<td>201-OK</td>\n<td>Creates multiple domains based on a list of names provided within a MultiDomain object.</td>\n</tr>\n</table>\n\n<table>\n<tr><th><i>/dns/managed/{domainId} – operate on a single domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the domain object representation of the specified domain.</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>\n    200-OK\n    400-specified domain name not found</td>\n<td>Deletes the specified domain. <b>WARNING: This is irreversible!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates a domain based ont he domain identifier in the path. Pass in a domain object in XML or JSON with the new values.</td>\n</tr>\n</table>\n\n<table>\n<tr><th><i>/dns/managed/{domainId}/records – operate on multiple records for one domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object representation of the records for the specified domain. The following are URL parameters that may be added to determine the data returned:\n    type – Record type. Values: A, AAAA, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT\n    rows – Number of rows returns\n    page – The page number of records, based on the number of rows returned\n</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>200-OK</td>\n<td>Deletes the specified records using a list of\nrecord identifiers provided in XML or JSON format for the given template. <b>WARNING: This is irreversible!</b></td>\n</tr>\n<tr>\n<td><b>POST</b></td>\n<td>201-OK</td>\n<td>Creates a series of records from the given domain using the list of record information provided in the XML or JSON format.</td>\n</tr>\n</table>\n\n<table>\n<tr><th><i>/dns/managed/{domainId}/records/{recordId} – operate on a record in a domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object representation of the specified domain.</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>200-OK</td>\n<td>Deletes the specified record. <b>WARNING: This is\nirreversible!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates a record based on the recordId identifier in\nthe path. Pass in a record object in XML or JSON with the new values.</td>\n</tr>\n</table>\n\n<table>\n<tr><th><i>/dns/managed/{domainId}/multi/records/ – operate on a multiple records in a domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object reperesentations</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>\n    200-OK\n    400- specified record not found\n    </td>\n<td>Deletes the specified record. <b>WARNING: This is\nirreversible!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates records based on the recordId identifiers in\nthe path. Pass in record objects in XML or JSON with the new values.</td>\n</tr>\n<tr>\n<td><b>POST</b></td>\n<td>201-OK</td>\n<td>Creates a series of records for the given domain using the list of record information provided in XML or JSON format</td>\n</tr>\n</table>\n\n\n<table>\n<tr><th><i>/dns/secondary/{domainId} – operate on a single secondary domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object reperesentations</td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>\n    200-OK\n    404- specified domain not found\n    </td>\n<td>Deletes the specified domain. <b>WARNING: This is\nirreversible!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates a domain based on the domainId identifiers in\nthe path. Pass in domain object in XML or JSON with the new values.</td>\n</tr>\n</table>\n\n\n<table>\n<tr><th><i>/dns/managed/{domainId}/records/ – operate on multiple records for one secondary domain</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object representation of the records for the specified domain. The following are URL parameters that may be added to determine the data returned:\n    type – Record type. Values: A, AAAA, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT\n    rows – Number of rows returns\n    page – The page number of records, based on the number of rows returned\n    </td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>200-OK</td>\n<td>Deletes the specified records using a list of record identifiers provided in XML or JSON format for the given template.  <b>WARNING: This is irriversilbe!</b></td>\n</tr>\n<tr>\n<td><b>POST</b></td>\n<td>201-OK</td>\n<td>Creates a series of records for the given domain using the list of record information provided in XML or JSON format</td>\n</tr>\n</table>\n\n\n<table>\n<tr><th><i>/dns/managed/{templateId}/records – operate on multiple records for one template</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns the record object representation of the records for the specified domain. The following are URL parameters that may be added to determine the data returned:\n    type – Record type. Values: A, AAAA, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT\n    rows – Number of rows returns\n    page – The page number of records, based on the number of rows returned\n    </td>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>\n    200-OK\n    404- specified domain name is not found\n    </td>\n<td>Deletes the specified records using a list of record identifiers provided in XML or JSON format for the given template.  <b>WARNING: This is irriversilbe and affects the domains for any domain associated with the given template!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Replaces the current set of records for a template using the provided list of records provided in XML or JSON format for the given template. <b>WARNING: This is irreversible and affects the records for any domain associated with the given template!</b></td>\n</tr>\n<tr>\n<td><b>POST</b></td>\n<td>201-OK</td>\n<td>Creates a record for the given template using the record information provided in XML or JSON format.</td>\n</tr>\n</table>\n\n\n<table>\n<tr><th><i>/dns/managed/{templateId}/records/{recordId} – operate on one record for one template</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>DELETE</b></td>\n<td>\n    200-OK\n    404- specified domain name is not found\n    </td>\n<td>Deletes the specified record for the given template.  <b>WARNING: This is irriversilbe and affects the domains for any domain associated with the given template!</b></td>\n</tr>\n<tr>\n<td><b>PUT</b></td>\n<td>200-OK</td>\n<td>Updates a record for a given template using the record information provided in XML or JSON format.</td>\n</tr>\n</table>\n\n\n<table>\n<tr><th><i>/usageApi/queriesApi – get account usage information by year and month</i></th></tr>\n<tr>\n<th>Method</th>\n<th>HTTP Status Codes</th>\n<th>Description</th>\n</tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns a list of QueryUsage objects.</td>\n</tr>\n<tr><th><i>/usageApi/queriesApi/{year}/{month} – get account usage information by year and month</i></th></tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns a list of QueryUsage objects.</td>\n</tr>\n<tr><th><i>/usageApi/queriesApi/{year}/managed/{month}/{domainId} – get account usage information by year and month for one domain</i></th></tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns a list of QueryUsage objects.</td>\n</tr>\n<tr><th><i>/usageApi/queriesApi/{year}/secondary/{month}/{domainId} – get account usage information by year and month for one secondary DNS domain</i></th></tr>\n<tr>\n<td><b>GET</b></td>\n<td>200-OK</td>\n<td>Returns a list of QueryUsage objects.</td>\n</tr>\n</table>","_postman_id":"cfad85cc-474e-4b40-9afa-44a8c3740e58"},{"name":"Error Reporting","item":[],"id":"f12bf62f-5286-4017-aa6c-be61ca73ce78","description":"<p>This is a generic error response code which indicates an error in the request issued, typically formatting or syntax related.</p>\n<p><code>Apache Tomcat/7.0.12 - Error\nreport <h1>HTTP Status 404 - Not Found</h1><hr /><p><b>type</b> Status report</p><p><b>message</b> Not Found</p><p><b>description</b>\nThe requested resource (Not Found) is not available.</p><hr /><h3>Apache Tomcat/7.0.12</h3></code></p>\n<p>Requests made with invalid credentials or an invalid <i>x-dnsme-requestDate</i> value will\nreceive an <b>HTTP 403 – Forbidden</b> response.</p>\n<p>Every request sent using the API includes a request date header (set by your computers current time). An example would be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>&gt; x-dnsme-requestDate:Tue, 01 Jan 2013 01:10:17 GMT\n</code></pre><p>DNS Made Easy responds with a header that includes a Date (set by our globally synchronized clocks). </p>\n<p>An example would be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>&lt; Date: Tue, 01 Jan 2013 01:10:17 GMT\n</code></pre><p>If the date/time of the system issuing the API calls is 30 seconds or more off from the API servers date/time this will cause this error. The system time of the server issuing the API calls should be set correctly to prevent this.</p>\n<p>Here is a full example that shows this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>./dnsmeapi.pl -v http://api.dnsmadeeasy.com/V2.0/dns/managed/123456/records -X GET\n* About to connect() to api.dnsmadeeasy.com port 80 (#0)\n* Trying 208.94.147.111... connected\n* Connected to api.dnsmadeeasy.com (208.94.147.111) port 80 (#0)\n&gt; GET /V2.0/dns/managed/1234567/records HTTP/1.1\n&gt; User-Agent: curl\n&gt; Host: api.dnsmadeeasy.com\n&gt; Accept: */*\n&gt; x-dnsme-apiKey:*********************************\n&gt; x-dnsme-hmac:**********************************\n&gt; x-dnsme-requestDate:Fri, 25 Jul 2014 12:37:47 GMT\n&gt;\n&lt; HTTP/1.1 200 OK\n&lt; Server: Apache-Coyote/1.1\n&lt; x-dnsme-requestId: *********************\n&lt; x-dnsme-requestsRemaining: 148\n&lt; x-dnsme-requestLimit: 150\n&lt; Set-Cookie:***************************\n&lt; Content-Type: application/json\n&lt; Transfer-Encoding: chunked\n&lt; Date: Fri, 25 Jul 2014 12:37:47 GMT\n&lt;\n* Connection #0 to host api.dnsmadeeasy.com left intact\n* Closing connection #0\n{\"data\":[{\"name\":\"\",\"value\":\"1.1.1.1\",\"id\":15562953,\"type\":\"A\",\"source\":1,\"gtdLocation\":\"DEFAULT\",\"failed\":false,\"failover\":false,\"sourceId\":1234567,\"monitor\":false,\"dynamicDns\":false,\"ttl\":3600,\"hardLink\":false}],\"page\":0,\"totalPages\":1,\"totalRecords\":1}\n</code></pre>","_postman_id":"f12bf62f-5286-4017-aa6c-be61ca73ce78"}],"event":[{"listen":"prerequest","script":{"id":"aa01625a-36b6-4d7c-abfb-8af826a5cb5e","type":"text/javascript","exec":["var apiKey = postman.getEnvironmentVariable(\"apiKey\");","var secretKey = postman.getEnvironmentVariable(\"secretKey\");","","function epochTime() {","    return new Date().toUTCString();","}","","postman.clearEnvironmentVariable(\"hmac\");","","var time = epochTime()","var method = request.method;","","var hmac = CryptoJS.HmacSHA1( time, secretKey ).toString( CryptoJS.enc.Hex );","postman.setEnvironmentVariable( 'hmac', hmac );","postman.setEnvironmentVariable( 'time', time );",""]}},{"listen":"test","script":{"id":"e5843a08-c7a8-4704-af43-f8ae75a35029","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.dnsmadeeasy.com/V2.0"}]}