{"info":{"_postman_id":"1f40a4ce-0028-48ce-bd6d-36496d713b8e","name":"Name.am API","description":"<html><head></head><body><p>This is a Postman collection for the Name.am API — register and manage domains and hosting programmatically over a simple REST API.</p>\n<p>Whether you’re a startup or an entrepreneur, learn how to integrate Name.am into your site and manage your business online. Questions? Reach us on the <a href=\"https://t.me/name_am\">community forum</a>.</p>\n<p>All requests and responses are JSON over HTTPS. Base URL: <strong><a href=\"https://api.name.am\">https://api.name.am</a></strong></p>\n<h3 id=\"getting-started\">Getting Started</h3>\n<ol>\n<li><strong>Get an API token</strong> — sign in to your dashboard → <strong>Settings → API Keys</strong> → create a key. It looks like <code>nk_live_…</code> and is shown once, so store it securely.</li>\n<li><strong>Authenticate every request</strong> with it on the <code>Authorization</code> header:\n<code>Authorization: Bearer {{token}}</code> — set the <code>token</code> environment variable to your API token once, and every request in this collection sends it.</li>\n<li><strong>Check availability &amp; price</strong> — <code>POST /client/domains/check</code>.</li>\n<li><strong>Register / renew / transfer</strong> a domain, or <strong>buy hosting</strong> — <code>POST /client/carts/purchase</code>. Orders are charged to your <strong>account balance</strong>.</li>\n<li><strong>Manage</strong> — list your domains (<code>GET /client/domains</code>) and update contacts, nameservers, DNS records, DNSSEC, auto-renew and transfer lock via <code>PUT /client/domains/{domain}</code>.</li>\n</ol>\n<h3 id=\"authentication\">Authentication</h3>\n<p>All requests are authenticated with an <strong>API token</strong>. Create one in your dashboard under <strong>Settings → API Keys</strong> — the token (<code>nk_live_…</code>) is shown once, so store it securely.</p>\n<p>Send it on the <code>Authorization</code> header of every request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl https://api.name.am/client/domains \\\n  -H \"Authorization: Bearer {{token}}\"\n</code></pre>\n<p>In Postman, <code>{{token}}</code> resolves from your environment; in your own code, use your <code>nk_live_…</code> token as the credential after <code>Bearer</code>. The same header works across the whole API. Purchases are charged to your <strong>account balance</strong>. For security, an API token <strong>cannot</strong> perform account-security actions (saved cards, two-factor, password change, session management) — those require signing in to your dashboard.</p>\n<p>Already calling <code>POST /auth/login</code> on every request? Replace it with a single API token in the <code>Authorization</code> header — nothing else changes.</p>\n<h3 id=\"errors\">Errors</h3>\n<p>Errors return a JSON body with a <code>message</code> field and a matching HTTP status:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"message\": \"Unauthorized\" }\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200</code></td>\n<td>Success</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td>Invalid request — validation failed (e.g. bad nameservers or contact info)</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td>Missing or invalid API token</td>\n</tr>\n<tr>\n<td><code>403</code></td>\n<td>Action not available with an API token (account-security endpoints)</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td>Resource not found (e.g. a domain not in your account)</td>\n</tr>\n<tr>\n<td><code>500</code></td>\n<td>Unexpected server error</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: a purchase with insufficient balance is <strong>not</strong> an error — it returns a transaction with <code>\"status\": \"failed\"</code>.</p>\n<h3 id=\"environment\">Environment</h3>\n<p>This collection uses one environment variable:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>token</code></td>\n<td>Your API token (<code>nk_live_…</code>)</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1966919","collectionId":"1f40a4ce-0028-48ce-bd6d-36496d713b8e","publishedId":"Szzj8dJx","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"182430","highlight":"0086FF"},"publishDate":"2020-08-20T12:12:07.000Z"},"item":[{"name":"Users","item":[{"name":"Change user info","id":"4c3c53a2-2d28-46ed-b20d-fa4ce7739d11","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"organization\": \"\",\n  \"email\": \"info@name.am\",\n  \"phone\": \"+12025550137\",\n  \"address1\": \"Oak Street\",\n  \"building\": \"7\",\n  \"apartment\": \"5\",\n  \"city\": \"Weehawken\",\n  \"state\": \"NJ\",\n  \"country\": \"US\",\n  \"zip\": \"07086\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user","description":"<p>Update your account/contact information. All fields are optional — send only the ones you want to change. Contact information is used by default when buying or renewing a domain.</p>\n<p>The address is split into separate fields: <code>address1</code> is the <strong>street name</strong>, with <code>building</code> and <code>apartment</code> kept separate.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td>string</td>\n<td>Your name</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>string</td>\n<td>Your last name</td>\n</tr>\n<tr>\n<td>organization</td>\n<td>string</td>\n<td>Your organization</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Your email (cannot be changed while authenticated with an API token)</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Your phone</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>string</td>\n<td>Street name</td>\n</tr>\n<tr>\n<td>building</td>\n<td>string</td>\n<td>Building number/name</td>\n</tr>\n<tr>\n<td>apartment</td>\n<td>string</td>\n<td>Apartment number</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>Your city</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>Your state / region</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>Two-letter country code (e.g. <code>US</code>, <code>AM</code>)</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>ZIP / postal code</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","user"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"1cc860bc-c001-46e7-9826-846614631e0d","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"organization\": \"\",\n  \"email\": \"info@name.am\",\n  \"phone\": \"+12025550137\",\n  \"address1\": \"Oak Street\",\n  \"building\": \"7\",\n  \"apartment\": \"5\",\n  \"city\": \"Weehawken\",\n  \"state\": \"NJ\",\n  \"country\": \"US\",\n  \"zip\": \"07086\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6512a9f4e3b1c20012ab34cd\",\n  \"email\": \"aram.petrosyan@example.com\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"fullName\": \"John Smith\",\n  \"accountType\": \"personal\",\n  \"locale\": \"en\",\n  \"currency\": \"USD\",\n  \"haveContactInfo\": true,\n  \"address1\": \"Oak Street\",\n  \"building\": \"7\",\n  \"apartment\": \"5\",\n  \"city\": \"Weehawken\",\n  \"state\": \"NJ\",\n  \"country\": \"US\",\n  \"zip\": \"07086\",\n  \"phone\": \"+12025550137\",\n  \"updatedAt\": \"2026-08-19T14:32:05.482Z\"\n}"}],"_postman_id":"4c3c53a2-2d28-46ed-b20d-fa4ce7739d11"},{"name":"Get user profile information","id":"3d8cf1bc-a5b2-41b8-880f-86e244a9ac73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.name.am/client/user","description":"<p>This query returns information about the <strong>user</strong>, as well as information about <strong>balance</strong>, <strong>notifications</strong>, <strong>nameServers</strong>, <strong>gifts</strong> and general other data.</p>\n","urlObject":{"protocol":"https","path":["client","user"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"9bade7f4-fe10-4b2c-b38f-3e9dfd5c04f7","name":"Example","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.name.am/client/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6512a9f4e3b1c20012ab34cd\",\n  \"accountId\": \"100482\",\n  \"email\": \"aram.petrosyan@example.com\",\n  \"firstName\": \"Aram\",\n  \"lastName\": \"Petrosyan\",\n  \"fullName\": \"Aram Petrosyan\",\n  \"organization\": \"Petrosyan LLC\",\n  \"accountType\": \"personal\",\n  \"locale\": \"en\",\n  \"currency\": \"USD\",\n  \"balance\": 0,\n  \"verified\": true,\n  \"twoFactorEnabled\": false,\n  \"haveContactInfo\": true,\n  \"address1\": \"Abovyan Street\",\n  \"building\": \"5\",\n  \"apartment\": \"23\",\n  \"city\": \"Yerevan\",\n  \"state\": \"Yerevan\",\n  \"country\": \"AM\",\n  \"zip\": \"0010\",\n  \"phone\": \"+37491234567\",\n  \"nameServers\": [\n    {\n      \"hostname\": \"park1.name.am\",\n      \"ipv4\": \"\"\n    },\n    {\n      \"hostname\": \"park2.name.am\",\n      \"ipv4\": \"\"\n    }\n  ],\n  \"notifications\": {\n    \"expiringDomainsEmail\": true,\n    \"expiringDomainsSMS\": true,\n    \"expiringHostingsEmail\": true,\n    \"expiringHostingsSMS\": true\n  },\n  \"createdAt\": \"2024-09-26T10:11:00.000Z\"\n}"}],"_postman_id":"3d8cf1bc-a5b2-41b8-880f-86e244a9ac73"}],"id":"19987c39-1582-49cc-b6db-952e59dc4945","event":[{"listen":"prerequest","script":{"id":"b05a08f1-0b8a-408a-8c61-738ca0113f16","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cfc68b0d-7e20-48ff-b530-713e974d2e46","type":"text/javascript","exec":[""]}}],"_postman_id":"19987c39-1582-49cc-b6db-952e59dc4945","description":""},{"name":"Domains","item":[{"name":"Purchase","item":[{"name":"Register Domain(s)","id":"16295fb3-40eb-42c6-b9f0-c96dba8970fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"am\",\n        \"type\": \"domain_registration\",\n        \"domain\": \"test.am\",\n        \"plan\": {\n            \"_id\": \"1_year_register\"\n        },\n        \"billingContacts\": {\n            \"organization\": \"\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"fullName\": \"John Smith\",\n            \"address1\": \"7 Oak st. apt 5\",\n            \"country\": \"US\",\n            \"email\": \"info@name.am\",\n            \"phone\": \"+37444433333\",\n            \"state\": \"Nj\",\n            \"city\": \"Weehawken\",\n            \"zip\": \"07086\"\n        },\n        \"nameServers\": [\n            {\n                \"hostname\": \"ns1.name.am\"\n            },\n            {\n                \"hostname\": \"ns2.name.am\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>false</td>\n<td>Top-level domain (TLD) name</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>true</td>\n<td>Purchase type <code>domain_registration</code></td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain name you want to register</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#625a055d-6cf9-45c5-8bf8-3e1e47fa4acb\">plan</a></td>\n<td>object</td>\n<td>false</td>\n<td>By default <code>\"_id\": \"1_year_register\"</code> if it isn't set</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#4c3c53a2-2d28-46ed-b20d-fa4ce7739d11\">administrativeContacts</a></td>\n<td>object</td>\n<td>false</td>\n<td>If it isn't set, then it is taken from user information by default</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#4c3c53a2-2d28-46ed-b20d-fa4ce7739d11\">registrantContacts</a></td>\n<td>object</td>\n<td>false</td>\n<td>If it isn't set, then it is taken from user information by default</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#4c3c53a2-2d28-46ed-b20d-fa4ce7739d11\">technicalContacts</a></td>\n<td>object</td>\n<td>false</td>\n<td>If it isn't set, then it is taken from user information by default</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#4c3c53a2-2d28-46ed-b20d-fa4ce7739d11\">billingContacts</a></td>\n<td>object</td>\n<td>false</td>\n<td>If it isn't set, then it is taken from user information by default</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#625a055d-6cf9-45c5-8bf8-3e1e47fa4acb\">nameServers</a></td>\n<td>array</td>\n<td>false</td>\n<td>By default, the nameservers assigned to our domains are: ns1.name.am and ns2.name.am</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","carts","purchase"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"a1b6f94b-d1f1-4b80-91d3-aceee55f7248","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"am\",\n        \"type\": \"domain_registration\",\n        \"domain\": \"test.am\",\n        \"plan\": {\n            \"_id\": \"1_year_register\"\n        },\n        \"billingContacts\": {\n            \"organization\": \"\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"fullName\": \"John Smith\",\n            \"address1\": \"7 Oak st. apt 5\",\n            \"country\": \"US\",\n            \"email\": \"info@name.am\",\n            \"phone\": \"+37444433333\",\n            \"state\": \"Nj\",\n            \"city\": \"Weehawken\",\n            \"zip\": \"07086\"\n        },\n        \"nameServers\": [\n            {\n                \"hostname\": \"ns1.name.am\"\n            },\n            {\n                \"hostname\": \"ns2.name.am\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": 100542,\n  \"id\": 100542,\n  \"createdAt\": \"2026-08-19T10:22:14+04:00\",\n  \"amount\": 5900,\n  \"currency\": \"AMD\",\n  \"description\": \"Name.am Order\",\n  \"type\": \"balance\",\n  \"status\": \"approved\",\n  \"method\": \"Balance\",\n  \"userId\": \"6410a2f7c2b9e40012a3d456\",\n  \"executed\": true,\n  \"coupon\": null,\n  \"items\": [\n    {\n      \"type\": \"domain_registration\",\n      \"name\": \"com\",\n      \"domain\": \"example.com\",\n      \"plan\": {\n        \"_id\": \"nc_com_register_1y\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 5900,\n        \"regularPrice\": 6900\n      },\n      \"currentAmount\": 5900,\n      \"regularAmount\": 6900,\n      \"nameServers\": [\n        \"ns1.name.am\",\n        \"ns2.name.am\"\n      ]\n    }\n  ]\n}"}],"_postman_id":"16295fb3-40eb-42c6-b9f0-c96dba8970fe"},{"name":"Renew Domain(s)","id":"30192cb6-8b7c-419c-81d7-fb0d0c319d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"name\": \"am\",\r\n        \"type\": \"domain_renew\",\r\n        \"domain\": \"test.am\",\r\n        \"plan\": {\r\n            \"_id\": \"1_year_renew\"\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase","description":"<p><strong>NOTE</strong>: It’s not necessary to send billing contacts information object when renewing a domain․ In this case, the billing contacts will be taken from the user profile information that you filled in advance.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>false</td>\n<td>Top-level domain (TLD) name</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>true</td>\n<td>Purchase type <code>domain_renew</code></td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain name you want to renew</td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#625a055d-6cf9-45c5-8bf8-3e1e47fa4acb\">plan</a></td>\n<td>object</td>\n<td>false</td>\n<td>By default <code>\"_id\": \"1_year_register\"</code> if isn't set</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb","id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb","name":"Purchase","type":"folder"}},"urlObject":{"protocol":"https","path":["client","carts","purchase"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"95e5b0b5-248e-4385-8da0-fb907209b203","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"name\": \"am\",\r\n        \"type\": \"domain_renew\",\r\n        \"domain\": \"test.am\",\r\n        \"plan\": {\r\n            \"_id\": \"1_year_renew\"\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": 100543,\n  \"id\": 100543,\n  \"createdAt\": \"2026-08-19T10:25:03+04:00\",\n  \"amount\": 6900,\n  \"currency\": \"AMD\",\n  \"description\": \"Name.am Order\",\n  \"type\": \"balance\",\n  \"status\": \"approved\",\n  \"method\": \"Balance\",\n  \"userId\": \"6410a2f7c2b9e40012a3d456\",\n  \"executed\": true,\n  \"coupon\": null,\n  \"items\": [\n    {\n      \"type\": \"domain_renew\",\n      \"name\": \"com\",\n      \"domain\": \"example.com\",\n      \"plan\": {\n        \"_id\": \"nc_com_renew_1y\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 6900,\n        \"regularPrice\": 6900\n      },\n      \"currentAmount\": 6900,\n      \"regularAmount\": 6900\n    }\n  ]\n}"}],"_postman_id":"30192cb6-8b7c-419c-81d7-fb0d0c319d81"},{"name":"Transfer Domain(s)","id":"2ee3b3ed-5fb7-4871-bcbf-4b88394a527f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"domain\": \"test.am\",\r\n        \"code\": \"1r98z91j\",\r\n        \"type\": \"domain_transfer\"\r\n    },\r\n    {\r\n        \"domain\": \"test2.am\",\r\n        \"code\": \"3r68z91k\",\r\n        \"type\": \"domain_transfer\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase","description":"<p><strong>To transfer your domain:</strong></p>\n<ul>\n<li>It must be valid and already registered with another registrar.</li>\n<li>Transfers will succeed only if the Admin Contact information is up-to-date.</li>\n<li>It must be registered for at least 60 days and in unlocked status.</li>\n<li>It will take between 5 and 7 days under normal circumstances.</li>\n<li>You must obtain an authorization code to transfer to name.am.</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain name you want to transfer</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td>true</td>\n<td>code for transfer. E.g. <code>1r98z91j</code></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>true</td>\n<td>Purchase type <code>domain_transfer</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb","id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb","name":"Purchase","type":"folder"}},"urlObject":{"protocol":"https","path":["client","carts","purchase"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"06e69102-4f39-42ff-b5d7-6e468a59c316","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"domain\": \"test.am\",\r\n        \"code\": \"1r98z91j\",\r\n        \"type\": \"domain_transfer\"\r\n    },\r\n    {\r\n        \"domain\": \"test2.am\",\r\n        \"code\": \"3r68z91k\",\r\n        \"type\": \"domain_transfer\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": 100544,\n  \"id\": 100544,\n  \"createdAt\": \"2026-08-19T10:31:47+04:00\",\n  \"amount\": 6500,\n  \"currency\": \"AMD\",\n  \"description\": \"Name.am Order\",\n  \"type\": \"balance\",\n  \"status\": \"approved\",\n  \"method\": \"Balance\",\n  \"userId\": \"6410a2f7c2b9e40012a3d456\",\n  \"executed\": true,\n  \"coupon\": null,\n  \"items\": [\n    {\n      \"type\": \"domain_transfer\",\n      \"name\": \"com\",\n      \"domain\": \"example.com\",\n      \"code\": \"EPP-AUTH-CODE-1234\",\n      \"plan\": {\n        \"_id\": \"nc_com_transfer_1y\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 6500,\n        \"regularPrice\": 6500\n      },\n      \"currentAmount\": 6500,\n      \"regularAmount\": 6500\n    }\n  ]\n}"}],"_postman_id":"2ee3b3ed-5fb7-4871-bcbf-4b88394a527f"}],"id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb","description":"<p>With an <code>/purchase</code> ​​endpoint, you can perform the following action։ <a href=\"https://docs.name.am/#16295fb3-40eb-42c6-b9f0-c96dba8970fe\">buy a domain</a>, <a href=\"https://docs.name.am/#30192cb6-8b7c-419c-81d7-fb0d0c319d81\">renew current domains</a>, or <a href=\"https://docs.name.am/#2ee3b3ed-5fb7-4871-bcbf-4b88394a527f\">transfer a domain</a>.</p>\n<p>More details about <strong>plan</strong> <code>Object</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name (key)</th>\n<th>value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>_id</td>\n<td>1_year_register, 3_year_register, 5_year_register, {n}_year_register</td>\n<td>Depending on the number inside the value, it is determined for how many years the domain will be registered.Depending on the chosen behavior and selected years, the price will be different</td>\n</tr>\n</tbody>\n</table>\n</div><p>More details about <strong>nameServers</strong> <code>Array</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name (key)</th>\n<th>value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>hostname</td>\n<td>ns1.name.am,ns2.name.am</td>\n<td>Nameservers are used to point your domain name to your website or email service. By default, the nameservers assigned to our domains are: ns1.name.am, ns2.name.am.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: Please keep in mind that you will need to have at least two nameservers. Once you have changed your nameservers, it will take roughly 24 hours for the changes to propagate </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"8052e4cb-7270-4776-9618-9960405acc3b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e1a3f459-6dfe-48eb-9026-11925e9da597","type":"text/javascript","exec":[""]}}],"_postman_id":"625a055d-6cf9-45c5-8bf8-3e1e47fa4acb"},{"name":"Check domain(s)","id":"571e53cd-fae7-4385-8f68-a43f048401b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"tld\": \"xyz\",\r\n    \"domain\": \"test.xyz\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/check","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tld</td>\n<td>string</td>\n<td>true</td>\n<td>Top-level domain (TLD) name</td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain or domains you are looking for</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","domains","check"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"a7151961-7ee8-4998-9698-d65e1e17b259","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"tld\": \"xyz\",\r\n    \"domain\": \"test.xyz\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"test.xyz\": {\n    \"domain\": \"test.xyz\",\n    \"available\": true,\n    \"premium\": false,\n    \"valid\": true,\n    \"tld\": \"xyz\",\n    \"price\": 1.98,\n    \"priceRenew\": 13.98,\n    \"main\": false\n  }\n}"}],"_postman_id":"571e53cd-fae7-4385-8f68-a43f048401b6"},{"name":"Domain Sale","id":"2460d392-36fe-447c-9e0b-2e4542e6d54f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"minBidPrice\": \"10000\",\n    \"domain\": \"test.am\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/marketplace","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>minBidPrice</td>\n<td>string</td>\n<td>true</td>\n<td>Minimum Bid Price: $100</td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain name you want to buy</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>Service Fee: (10%)</li>\n<li>Bank Transfer:    $30.00</li>\n<li>Minimum Bid Price:  $100</li>\n</ul>\n","urlObject":{"protocol":"https","path":["client","marketplace"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"acfe7bb1-8e13-4a91-ae6b-23481d150641","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"minBidPrice\": \"10000\",\n    \"domain\": \"test.am\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/marketplace"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"665f1a2b9c3d4e5f60718293\",\n  \"domain\": \"cloudhub.am\",\n  \"minBidPrice\": 4500,\n  \"lastBidPrice\": 4500,\n  \"currency\": \"USD\",\n  \"owner\": \"665abc1234def5678901a234\",\n  \"bin\": false,\n  \"bids\": []\n}"}],"_postman_id":"2460d392-36fe-447c-9e0b-2e4542e6d54f"},{"name":"My domain(s)","id":"b43f5805-bdb2-4e62-95d6-781f618f164f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"user-agent":true}},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains","description":"<p>List the domains in your account, paginated. Supports search and filtering.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>number</td>\n<td>Page number (default 1)</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>number</td>\n<td>Page size (default 50)</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>Match domains by name</td>\n</tr>\n<tr>\n<td>filter</td>\n<td>string</td>\n<td>One of <code>expired</code>, <code>expiring-30-days</code>, <code>privacy-on</code>/<code>privacy-off</code>, <code>transfer-on</code>/<code>transfer-off</code>, <code>auto-renew-on</code>/<code>auto-renew-off</code>, <code>for-sale-on</code>/<code>for-sale-off</code></td>\n</tr>\n<tr>\n<td>sort</td>\n<td>string</td>\n<td>JSON sort, e.g. <code>{\"expiration\":1}</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>Returns a paginated envelope (<code>docs</code> + paging metadata); each item is a full domain record.</p>\n","urlObject":{"protocol":"https","path":["client","domains"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"b169f793-850f-4834-8eea-90e2f5691539","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"docs\": [\n    {\n      \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n      \"domain\": \"example.am\",\n      \"tld\": \"am\",\n      \"status\": \"active\",\n      \"registered\": \"2024-03-11T09:00:00.000Z\",\n      \"expiration\": \"2026-03-11T09:00:00.000Z\",\n      \"autoRenew\": true,\n      \"transferLock\": false,\n      \"whoIsPrivacyStatus\": true,\n      \"forSale\": false,\n      \"nameServers\": [\n        {\n          \"hostname\": \"park1.name.am\",\n          \"ipv4\": \"\"\n        },\n        {\n          \"hostname\": \"park2.name.am\",\n          \"ipv4\": \"\"\n        }\n      ],\n      \"registrantContacts\": {\n        \"firstName\": \"Ani\",\n        \"lastName\": \"Petrosyan\",\n        \"email\": \"ani@example.am\",\n        \"address1\": \"12 Abovyan St\",\n        \"city\": \"Yerevan\",\n        \"country\": \"AM\",\n        \"phone\": \"+37410123456\"\n      }\n    }\n  ],\n  \"totalDocs\": 1,\n  \"limit\": 50,\n  \"page\": 1,\n  \"totalPages\": 1,\n  \"hasPrevPage\": false,\n  \"hasNextPage\": false,\n  \"prevPage\": null,\n  \"nextPage\": null\n}"}],"_postman_id":"b43f5805-bdb2-4e62-95d6-781f618f164f"},{"name":"Get backorder domain(s)","id":"aa21e660-673e-497f-a5de-6352a441b72f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.name.am/client/backorders/?page=1&limit=40","description":"<p>Query Params</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>1</td>\n<td></td>\n</tr>\n<tr>\n<td>limit</td>\n<td>40</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","backorders",""],"host":["api","name","am"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"40"}],"variable":[]}},"response":[{"id":"ac983ed1-1151-48ba-8faf-1e67d5484b91","name":"Example","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.name.am/client/backorders/?page=1&limit=40","protocol":"https","host":["api","name","am"],"path":["client","backorders",""],"query":[{"key":"page","value":"1"},{"key":"limit","value":"40"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"docs\": [\n    {\n      \"_id\": \"662abc1234ef5678901d2345\",\n      \"domain\": \"premium.am\",\n      \"endAt\": \"2026-08-25T12:00:00.000Z\",\n      \"bids\": []\n    }\n  ],\n  \"totalDocs\": 1,\n  \"limit\": 10,\n  \"page\": 1,\n  \"totalPages\": 1,\n  \"hasPrevPage\": false,\n  \"hasNextPage\": false,\n  \"prevPage\": null,\n  \"nextPage\": null\n}"}],"_postman_id":"aa21e660-673e-497f-a5de-6352a441b72f"},{"name":"Domain Pricing","id":"17d017f4-c928-4f66-898f-6a2e3d826058","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.name.am/client/products","description":"<p>Making this call you get all top-level domain (TLD) plans,which includes information about currency, behavior, duration, duration unit, current price and  regular price</p>\n<p><strong>Response description</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>AMD</td>\n<td>Currency type</td>\n</tr>\n<tr>\n<td>behavior</td>\n<td><code>\"reactivate\"</code>, <code>\"register\"</code>, <code>\"renew\"</code>, <code>\"transfer\"</code></td>\n<td>Depending on the chosen actiontype, the price will vary</td>\n</tr>\n<tr>\n<td>durationUnit</td>\n<td>year</td>\n<td>Period in years</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>1</td>\n<td>Number of years, e.g. 1,2,3 ...</td>\n</tr>\n<tr>\n<td>_id</td>\n<td><code>\"6_year_register\"</code>, <code>\"9_year_renew\"</code>, <code>\"1_year_reactivate\"</code>, <code>\"1_year_transfer\"</code></td>\n<td>Contains the number of years and action type</td>\n</tr>\n<tr>\n<td>currentPrice</td>\n<td>7900</td>\n<td>Depending on the chosen action type and selected years, the price will vary</td>\n</tr>\n<tr>\n<td>regularPrice</td>\n<td>7900</td>\n<td>Depending on the chosen action type and selected years, the price will vary</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","products"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"e86cf3da-1c92-444a-8c9b-6cdc2dfa1249","name":"Example","originalRequest":{"method":"GET","header":[],"url":"https://api.name.am/client/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_id\": \"5e9a1b2c3d4e5f0011223344\",\n    \"name\": \"am\",\n    \"type\": \"tld\",\n    \"provider\": \"amnic\",\n    \"popular\": true,\n    \"plans\": [\n      {\n        \"_id\": \"am_register_1y\",\n        \"behavior\": \"register\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 12000,\n        \"regularPrice\": 12000\n      },\n      {\n        \"_id\": \"am_renew_1y\",\n        \"behavior\": \"renew\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 12000,\n        \"regularPrice\": 12000\n      },\n      {\n        \"_id\": \"am_transfer_1y\",\n        \"behavior\": \"transfer\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 12000,\n        \"regularPrice\": 12000\n      }\n    ]\n  },\n  {\n    \"_id\": \"5e9a1b2c3d4e5f0011223399\",\n    \"name\": \"com\",\n    \"type\": \"tld\",\n    \"provider\": \"namecheap\",\n    \"plans\": [\n      {\n        \"_id\": \"nc_com_register_1y\",\n        \"behavior\": \"register\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 5900,\n        \"regularPrice\": 6900\n      },\n      {\n        \"_id\": \"nc_com_renew_1y\",\n        \"behavior\": \"renew\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 6900,\n        \"regularPrice\": 6900\n      },\n      {\n        \"_id\": \"nc_com_transfer_1y\",\n        \"behavior\": \"transfer\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 6500,\n        \"regularPrice\": 6500\n      }\n    ]\n  }\n]"}],"_postman_id":"17d017f4-c928-4f66-898f-6a2e3d826058"},{"name":"Domain Marketplace","id":"e71ad111-3802-4b19-bc35-a9a3ffaa7d73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.name.am/client/marketplace?minLength=1&maxLength=20&minPrice=0&maxPrice=0&keyword=wa&page=1&limit=40","description":"<p>Browse domains listed for sale on the Name.am marketplace. Filter by length, price and keyword, with pagination.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>keyword</td>\n<td>string</td>\n<td>Substring the domain must contain</td>\n</tr>\n<tr>\n<td>minLength / maxLength</td>\n<td>number</td>\n<td>Domain length range (a <code>maxLength</code> of 20 means no upper limit)</td>\n</tr>\n<tr>\n<td>minPrice / maxPrice</td>\n<td>number</td>\n<td>Last-bid price range</td>\n</tr>\n<tr>\n<td>page</td>\n<td>number</td>\n<td>Page number (default 1)</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>number</td>\n<td>Page size (default 10)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Returns a paginated envelope (<code>docs</code> + paging metadata).</p>\n","urlObject":{"protocol":"https","path":["client","marketplace"],"host":["api","name","am"],"query":[{"key":"minLength","value":"1"},{"key":"maxLength","value":"20"},{"key":"minPrice","value":"0"},{"key":"maxPrice","value":"0"},{"key":"keyword","value":"wa"},{"key":"page","value":"1"},{"key":"limit","value":"40"}],"variable":[]}},"response":[{"id":"a6ec7c4a-33ea-422a-8488-5875f8a8a2d4","name":"Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.name.am/client/marketplace?minLength=1&maxLength=20&minPrice=0&maxPrice=0&keyword=wa&page=1&limit=40","protocol":"https","host":["api","name","am"],"path":["client","marketplace"],"query":[{"key":"minLength","value":"1"},{"key":"maxLength","value":"20"},{"key":"minPrice","value":"0"},{"key":"maxPrice","value":"0"},{"key":"keyword","value":"wa"},{"key":"page","value":"1"},{"key":"limit","value":"40"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"docs\": [\n    {\n      \"_id\": \"665f1a2b9c3d4e5f60718293\",\n      \"domain\": \"cloudhub.am\",\n      \"lastBidPrice\": 4500,\n      \"minBidPrice\": 4500,\n      \"currency\": \"USD\",\n      \"bin\": false,\n      \"startAt\": \"2026-08-12T09:00:00.000Z\",\n      \"endAt\": \"2026-08-18T09:00:00.000Z\",\n      \"bids\": []\n    }\n  ],\n  \"totalDocs\": 1,\n  \"limit\": 10,\n  \"page\": 1,\n  \"totalPages\": 1,\n  \"hasPrevPage\": false,\n  \"hasNextPage\": false,\n  \"prevPage\": null,\n  \"nextPage\": null\n}"}],"_postman_id":"e71ad111-3802-4b19-bc35-a9a3ffaa7d73"},{"name":"Change domain(s) contact info","id":"64b5eabb-7271-4fcb-ac98-6c5effa9d8a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"administrativeContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"registrantContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"technicalContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"billingContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<p><strong>NOTE</strong>: Fill latin characters only. Domain registrations can be rejected because of wrong address.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Your variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>Тhis is the name of the domain for which you want to get the domain contact info</td>\n</tr>\n</tbody>\n</table>\n</div><p>E.g. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VARIABLE</th>\n<th>CURRENT VALUE (this value is used while sending a request)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>88888888.am</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"e707d68b-4ae5-424c-ae86-8b05a1655882","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"administrativeContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"registrantContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"technicalContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    },\n    \"billingContacts\": {\n        \"organization\": \"\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Smith\",\n        \"fullName\": \"John Smith\",\n        \"address1\": \"7 Oak st. apt 5\",\n        \"country\": \"US\",\n        \"email\": \"info@name.am\",\n        \"phone\": \"+12025550137\",\n        \"state\": \"Nj\",\n        \"city\": \"Weehawken\",\n        \"zip\": \"07086\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"tld\": \"am\",\n  \"status\": \"active\",\n  \"registrantContacts\": {\n    \"firstName\": \"Ani\",\n    \"lastName\": \"Petrosyan\",\n    \"organization\": \"Example LLC\",\n    \"address1\": \"12 Abovyan St\",\n    \"city\": \"Yerevan\",\n    \"country\": \"AM\",\n    \"email\": \"ani@example.am\",\n    \"phone\": \"+37410123456\"\n  },\n  \"administrativeContacts\": {\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"email\": \"info@name.am\"\n  },\n  \"technicalContacts\": {\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"email\": \"info@name.am\"\n  },\n  \"billingContacts\": {\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"email\": \"info@name.am\"\n  },\n  \"autoRenew\": true,\n  \"transferLock\": false,\n  \"whoIsPrivacyStatus\": true\n}"}],"_postman_id":"64b5eabb-7271-4fcb-ac98-6c5effa9d8a5"}],"id":"a0feaade-38f7-4e92-8013-67d8bfc4922a","description":"<p>You can find your perfect domain. And you can also see the same domain with available TLDs (top level domain).</p>\n<p><a href=\"https://name.am/domain-ideas\">Or you can choose from our list!</a></p>\n","event":[{"listen":"prerequest","script":{"id":"21381599-8098-49cf-b0d1-74c940c1a303","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"616e5505-c563-4daf-9af3-1c0c66cf2e2b","type":"text/javascript","exec":[""]}}],"_postman_id":"a0feaade-38f7-4e92-8013-67d8bfc4922a"},{"name":"Hostings","item":[{"name":"Purchase","item":[{"name":"Buy Hosting","id":"6583c00a-4ad0-4c3a-ae8d-af85fdbee523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"nameavro_Name0\",\n        \"domainType\": \"internal\",\n        \"username\": \"d4ngkxc6zj36u5v4\",\n        \"password\": \"uTeJXj0x3Z\",\n        \"domain\": \"test.am\",\n        \"newDomain\": null,\n        \"type\": \"hosting_registration\"\n        \n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>true</td>\n<td><code>nameavro_Name0</code></td>\n</tr>\n<tr>\n<td>domainType</td>\n<td>string</td>\n<td>true</td>\n<td><code>internal</code></td>\n</tr>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>true</td>\n<td>A username must be between 1 and 16 characters and must contains only lowercase characters and numbers, e.g. <code>d4ngkxc6zj36u5v4</code></td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>true</td>\n<td>Password can not contain username! Password must contain a lowercase, uppercase letter(s), number, special character [~!@#$%^&amp;*()_-+] and, contain minimum 9 character, e.g. <code>uTeJXj0x3Z</code></td>\n</tr>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain which will be attached to the hosting</td>\n</tr>\n<tr>\n<td>newDomain</td>\n<td>string</td>\n<td>true</td>\n<td>Domain name you want to register</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>true</td>\n<td>Purchase type <code>hosting_registration</code></td>\n</tr>\n<tr>\n<td><a href=\"https://docs.name.am/#625a055d-6cf9-45c5-8bf8-3e1e47fa4acb\">plan</a></td>\n<td>object</td>\n<td>false</td>\n<td>By default <code>\"_id\": \"1_month_register\"</code> if is not set</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"89a42a5a-d846-4511-95c5-9bf578599374","id":"89a42a5a-d846-4511-95c5-9bf578599374","name":"Purchase","type":"folder"}},"urlObject":{"protocol":"https","path":["client","carts","purchase"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"5402d17d-35c6-4f3e-a25c-7abc606c228b","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"nameavro_Name0\",\n        \"domainType\": \"internal\",\n        \"username\": \"d4ngkxc6zj36u5v4\",\n        \"password\": \"uTeJXj0x3Z\",\n        \"domain\": \"test.am\",\n        \"newDomain\": null,\n        \"type\": \"hosting_registration\"\n        \n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/carts/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": 100545,\n  \"id\": 100545,\n  \"createdAt\": \"2026-08-19T10:40:12+04:00\",\n  \"amount\": 12000,\n  \"currency\": \"AMD\",\n  \"description\": \"Name.am Order\",\n  \"type\": \"balance\",\n  \"status\": \"approved\",\n  \"method\": \"Balance\",\n  \"userId\": \"6410a2f7c2b9e40012a3d456\",\n  \"executed\": true,\n  \"coupon\": null,\n  \"items\": [\n    {\n      \"type\": \"hosting_registration\",\n      \"name\": \"nameavro_Name1\",\n      \"domain\": \"example.com\",\n      \"domainType\": \"internal\",\n      \"username\": \"myhost\",\n      \"plan\": {\n        \"_id\": \"hosting_name1_1y\",\n        \"duration\": 1,\n        \"durationUnit\": \"year\",\n        \"currency\": \"AMD\",\n        \"currentPrice\": 12000,\n        \"regularPrice\": 15000\n      },\n      \"currentAmount\": 12000,\n      \"regularAmount\": 15000\n    }\n  ]\n}"}],"_postman_id":"6583c00a-4ad0-4c3a-ae8d-af85fdbee523"}],"id":"89a42a5a-d846-4511-95c5-9bf578599374","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a4eb91a3-a79b-466d-ab64-617eb7771a67","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c2c536f0-e7d9-4583-b4b3-7d06911826d4","type":"text/javascript","exec":[""]}}],"_postman_id":"89a42a5a-d846-4511-95c5-9bf578599374","description":""},{"name":"My Hosting(s)","id":"82027847-abc2-4439-96b1-995986c689e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.name.am/client/hostings","description":"<p>List the hosting plans on your account, paginated.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>number</td>\n<td>Page number (default 1)</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>number</td>\n<td>Page size (default 10)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Returns a paginated envelope (<code>docs</code> + paging metadata); each item includes plan, domain, status, expiration and autoRenew.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"5082dd49-2af8-4263-9b10-ed68626bf209","id":"5082dd49-2af8-4263-9b10-ed68626bf209","name":"Hostings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","hostings"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"51a40952-b775-4cfb-8224-444a5261f733","name":"Example","originalRequest":{"method":"GET","header":[],"url":"https://api.name.am/client/hostings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"docs\": [\n    {\n      \"_id\": \"64b0f1a2c9e77a0012ab34cd\",\n      \"ip\": \"185.70.197.12\",\n      \"name\": \"nameavro_Name1\",\n      \"status\": \"active\",\n      \"planId\": \"hosting_name1_1y\",\n      \"domain\": \"example.com\",\n      \"username\": \"myhost\",\n      \"registered\": \"2026-08-19T10:40:20.000Z\",\n      \"expiration\": \"2027-08-19T10:40:20.000Z\",\n      \"autoRenew\": true,\n      \"nameServers\": [\n        \"ns1.name.am\",\n        \"ns2.name.am\"\n      ],\n      \"type\": \"shared\",\n      \"hostingType\": \"cpanel\",\n      \"transactionId\": 100545\n    }\n  ],\n  \"totalDocs\": 1,\n  \"limit\": 10,\n  \"page\": 1,\n  \"totalPages\": 1,\n  \"hasPrevPage\": false,\n  \"hasNextPage\": false,\n  \"prevPage\": null,\n  \"nextPage\": null\n}"}],"_postman_id":"82027847-abc2-4439-96b1-995986c689e3"},{"name":"Auto Renew","id":"d5328b7d-8363-41c1-ab67-5a1f2df84055","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"autoRenew\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/hostings/{{id}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>URL variable</td>\n<td>true</td>\n<td>Each hosting plan has its own ID number with which you can make, for example, an auto renew of a hosting</td>\n</tr>\n</tbody>\n</table>\n</div><p>You can get id by making a call to <code>https://api.name.am/client/hostings</code> <a href=\"%60https://docs.name.am/#82027847-abc2-4439-96b1-995986c689e3%60\">My Hostings</a> and extract  hosting plan id( <code>\"_id\": \"4e453710f144ae7c59c4224b\"</code>) from there.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>autoRenew</td>\n<td>string</td>\n<td>true</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"5082dd49-2af8-4263-9b10-ed68626bf209","id":"5082dd49-2af8-4263-9b10-ed68626bf209","name":"Hostings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","hostings","{{id}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"a9ccc8e7-5472-4ce0-b2e1-68251e7aebe7","name":"Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"autoRenew\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/hostings/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"64b0f1a2c9e77a0012ab34cd\",\n  \"ip\": \"185.70.197.12\",\n  \"name\": \"nameavro_Name1\",\n  \"status\": \"active\",\n  \"planId\": \"hosting_name1_1y\",\n  \"domain\": \"example.com\",\n  \"username\": \"myhost\",\n  \"registered\": \"2026-08-19T10:40:20.000Z\",\n  \"expiration\": \"2027-08-19T10:40:20.000Z\",\n  \"autoRenew\": false,\n  \"type\": \"shared\",\n  \"hostingType\": \"cpanel\",\n  \"transactionId\": 100545\n}"}],"_postman_id":"d5328b7d-8363-41c1-ab67-5a1f2df84055"}],"id":"5082dd49-2af8-4263-9b10-ed68626bf209","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f612eeb7-f6a5-40ec-bf90-4cc339efe3ac","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d390bb4-23be-4287-8104-051fe56dffc3","type":"text/javascript","exec":[""]}}],"_postman_id":"5082dd49-2af8-4263-9b10-ed68626bf209","description":""},{"name":"Settings","item":[{"name":"Domain Auto Renew, Transfer Lock, Whois Privacy","id":"be90b6e0-01bf-4909-925f-5c915438e3b1","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"transferLock\": true,\r\n    \"autoRenew\": true,\r\n    \"whoIsPrivacyStatus\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transferLock</td>\n<td>boolean</td>\n<td>false</td>\n<td>If it is locked you cannot transfer domain</td>\n</tr>\n<tr>\n<td>autoRenew</td>\n<td>boolean</td>\n<td>false</td>\n<td>Automatically renew(s) domain(s) when expiration approach(es)</td>\n</tr>\n<tr>\n<td>whoIsPrivacyStatus</td>\n<td>boolean</td>\n<td>false</td>\n<td>A user buys <a href=\"https://en.wikipedia.org/wiki/Domain_privacy\">privacy</a> from the company, who in turn replaces the user's information in the WHOIS with the information of a forwarding service (for email and sometimes postal mail, it is done by a proxy server).</td>\n</tr>\n</tbody>\n</table>\n</div><p>E.g. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VARIABLE</th>\n<th>CURRENT VALUE (this value is used while sending a request)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>88888888.am</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"ec5e733f-e3bc-446e-ba7f-5df2096e1bb8","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"transferLock\": true,\r\n    \"autoRenew\": true,\r\n    \"whoIsPrivacyStatus\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"tld\": \"am\",\n  \"status\": \"active\",\n  \"autoRenew\": true,\n  \"transferLock\": true,\n  \"whoIsPrivacyStatus\": true\n}"}],"_postman_id":"be90b6e0-01bf-4909-925f-5c915438e3b1"},{"name":"Transfer Wizard","id":"c203ffe4-67c1-4e05-aa5d-54e73b58c531","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    \"domain.am\"\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/wizard/transfer","description":"<p>Transfer your domains to Name.am</p>\n<p><strong>You’re probably here because your current domain provider isn’t giving you the service you need, you just want to consolidate your properties or it’s just time for a change. Our goal is to make this process as simple as possible so that you can get on with your life and move forward.</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request Payload</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>string</td>\n<td>true</td>\n<td>This is the domain name you wish to transfer to us</td>\n</tr>\n</tbody>\n</table>\n</div><p>E.g. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VARIABLE</th>\n<th>CURRENT VALUE (this value is used while sending a request)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>\"domain.am\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","wizard","transfer"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"35efe94c-eb86-488d-b985-593755c03e7b","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    \"domain.am\"\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/wizard/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"domain\": \"domain.am\",\n    \"success\": true\n  }\n]"}],"_postman_id":"c203ffe4-67c1-4e05-aa5d-54e73b58c531"},{"name":"Send transfer Password","id":"87576a76-c9ba-41a3-8aa7-d18f55cda3c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"domain\": \"test.am\",\n        \"password\": \"12345\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/wizard/transfer","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>domain</td>\n<td>string</td>\n<td>true</td>\n<td></td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>true</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","wizard","transfer"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"c25a5e8a-4a9e-42f0-9b5c-3819c05e290f","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"domain\": \"test.am\",\n        \"password\": \"12345\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/wizard/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"domain\": \"test.am\",\n    \"success\": true\n  }\n]"}],"_postman_id":"87576a76-c9ba-41a3-8aa7-d18f55cda3c9"},{"name":"Transfer Auth Code","id":"a156d073-fc49-4ca7-a4d2-dc2399489815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}/transfer","description":"<p>Also known as AuthInfo Code, Auth Code, Transfer Key, Transfer Secret or EPP code.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Your variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>Тhis is the name of the domain for which you want to get the Transfer Auth Code</td>\n</tr>\n</tbody>\n</table>\n</div><p>E.g. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VARIABLE</th>\n<th>CURRENT VALUE (this value is used while sending a request)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>88888888.am</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}","transfer"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"b3929763-34dc-492c-96f8-c2c536760bb5","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"tld\": \"am\",\n  \"status\": \"active\",\n  \"transferCode\": \"aB3!xY9pQ2mZ\",\n  \"transferLock\": false,\n  \"autoRenew\": true,\n  \"whoIsPrivacyStatus\": true\n}"}],"_postman_id":"a156d073-fc49-4ca7-a4d2-dc2399489815"},{"name":"Notify about expiring domains (email,sms)","id":"7ddb2e55-c44e-4b0d-b0dd-3407d4bf4735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"expiringDomainsSMS\": true,\r\n    \"expiringDomainsEmail\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user/notifications","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>expiringDomainsSMS</td>\n<td>boolean</td>\n<td>false</td>\n<td>Notify about expiring domains via sms</td>\n</tr>\n<tr>\n<td>expiringDomainsEmail</td>\n<td>boolean</td>\n<td>false</td>\n<td>Notify about expiring domains via an email</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","user","notifications"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"e1a1a2bc-1eeb-4f85-9855-f5e42e8f01c5","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"expiringDomainsSMS\": true,\r\n    \"expiringDomainsEmail\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6512a9f4e3b1c20012ab34cd\",\n  \"email\": \"aram.petrosyan@example.com\",\n  \"notifications\": {\n    \"expiringDomainsEmail\": true,\n    \"expiringDomainsSMS\": true,\n    \"expiringHostingsEmail\": true,\n    \"expiringHostingsSMS\": true\n  }\n}"}],"_postman_id":"7ddb2e55-c44e-4b0d-b0dd-3407d4bf4735"},{"name":"Notify about expiring hostings (email,sms)","id":"b751cd8c-e34a-4349-8b27-c79b2127ef80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"expiringHostingsSMS\": true,\r\n    \"expiringHostingsEmail\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user/notifications","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>expiringDomainsSMS</td>\n<td>boolean</td>\n<td>false</td>\n<td>Notify about expiring hostings via sms</td>\n</tr>\n<tr>\n<td>expiringDomainsEmail</td>\n<td>boolean</td>\n<td>false</td>\n<td>Notify about expiring hostings via an email</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","user","notifications"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"2697868f-8d65-4ac0-aee6-bb6edd3b7b5a","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"expiringHostingsSMS\": true,\r\n    \"expiringHostingsEmail\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/user/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6512a9f4e3b1c20012ab34cd\",\n  \"email\": \"aram.petrosyan@example.com\",\n  \"notifications\": {\n    \"expiringDomainsEmail\": true,\n    \"expiringDomainsSMS\": true,\n    \"expiringHostingsEmail\": true,\n    \"expiringHostingsSMS\": true\n  }\n}"}],"_postman_id":"b751cd8c-e34a-4349-8b27-c79b2127ef80"},{"name":"Change Nameservers","id":"5413060a-c8a1-43f0-8b25-8cbf69508949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"nameServers\": [\n        {\n            \"hostname\": \"park1.name.am\"\n        },\n        {\n            \"hostname\": \"park2.name.am\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>nameServers</td>\n<td>array</td>\n<td>true</td>\n<td>Nameservers are used to point your domain name to your website or email service. By default, the nameservers assigned to our domains are: ns1.name.am, ns2.name.am.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"2ac0843a-63d4-4010-8af2-d6243c376c27","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"nameServers\": [\n        {\n            \"hostname\": \"park1.name.am\"\n        },\n        {\n            \"hostname\": \"park2.name.am\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"tld\": \"am\",\n  \"status\": \"active\",\n  \"dnsUsed\": false,\n  \"nameServers\": [\n    {\n      \"hostname\": \"ns1.example.net\",\n      \"ipv4\": \"\"\n    },\n    {\n      \"hostname\": \"ns2.example.net\",\n      \"ipv4\": \"\"\n    }\n  ]\n}"}],"_postman_id":"5413060a-c8a1-43f0-8b25-8cbf69508949"},{"name":"Add DNS Records","id":"43277153-ee66-452f-99b6-5afa99bc635d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"type\": \"A\",\n            \"ttl\": 1,\n            \"prefix\": \"xx\",\n            \"name\": \"xx.88888888.am\",\n            \"content\": \"192.168.1.65\",\n            \"action\": \"CREATE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>records</td>\n<td>array</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Your variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>Тhis is the name of the domain for which you want to add DNS Records</td>\n</tr>\n</tbody>\n</table>\n</div><p>E.g. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VARIABLE</th>\n<th>CURRENT VALUE (this value is used while sending a request)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{domain}}</td>\n<td>88888888.am</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"fbc4f4e8-a6f6-420e-9454-26f590f0ffe8","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"type\": \"A\",\n            \"ttl\": 1,\n            \"prefix\": \"xx\",\n            \"name\": \"xx.88888888.am\",\n            \"content\": \"192.168.1.65\",\n            \"action\": \"CREATE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"dnsUsed\": true,\n  \"dnsId\": \"zone_ab12cd34\",\n  \"dnsProvider\": \"cloudflare\",\n  \"records\": [\n    {\n      \"id\": \"rec_9f8e7d6c\",\n      \"type\": \"A\",\n      \"name\": \"@\",\n      \"content\": \"185.199.108.153\",\n      \"ttl\": 3600,\n      \"proxied\": false,\n      \"access\": true\n    }\n  ]\n}"}],"_postman_id":"43277153-ee66-452f-99b6-5afa99bc635d"},{"name":"Delete DNS Records","id":"cfa3dc19-0356-4cc4-81f0-32650d50afdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"type\": \"A\",\n            \"ttl\": 1,\n            \"prefix\": \"xx\",\n            \"name\": \"xx.88888888.am\",\n            \"content\": \"192.168.1.65\",\n            \"action\": \"DELETE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<p>Delete one or more DNS records from a domain's zone. Send the records to remove with <code>action: \"DELETE\"</code> and each record's <code>id</code> (get ids from the domain's <code>records</code> array). CREATE / UPDATE / DELETE may be mixed in a single <code>records</code> array.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>records</td>\n<td>array</td>\n<td>true</td>\n<td>Records to modify; each DELETE item needs the record <code>id</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"4c42b033-9d10-4b66-a261-4dfa0513215e","name":"Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"type\": \"A\",\n            \"ttl\": 1,\n            \"prefix\": \"xx\",\n            \"name\": \"xx.88888888.am\",\n            \"content\": \"192.168.1.65\",\n            \"action\": \"DELETE\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"dnsUsed\": true,\n  \"dnsId\": \"zone_ab12cd34\",\n  \"dnsProvider\": \"cloudflare\",\n  \"records\": []\n}"}],"_postman_id":"cfa3dc19-0356-4cc4-81f0-32650d50afdd"},{"name":"Apply DNSSEC Control","id":"38276414-be96-4602-99cd-5f4735381493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"dnsSec\": [\n\n        {\n            \"validity\": true,\n            \"tag\": \"\",\n            \"algorithm\": \"\",\n            \"digestType\": \"\",\n            \"digest\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dnsSec</td>\n<td>array</td>\n<td>true</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015","id":"d672e700-a087-4a51-84e1-f0959ebfe015","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["client","domains","{{domain}}"],"host":["api","name","am"],"query":[],"variable":[]}},"response":[{"id":"e97db1c5-027d-4506-99fe-18c4f7975608","name":"Example","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"dnsSec\": [\n\n        {\n            \"validity\": true,\n            \"tag\": \"\",\n            \"algorithm\": \"\",\n            \"digestType\": \"\",\n            \"digest\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.name.am/client/domains/{{domain}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"6620f1a4e3b2c19a4d8f0012\",\n  \"domain\": \"example.am\",\n  \"dnsSec\": [\n    {\n      \"validity\": true,\n      \"tag\": 12345,\n      \"algorithm\": 13,\n      \"digest\": \"49FD46E6C4B45C55D4AC69E9\",\n      \"digestType\": 2\n    }\n  ]\n}"}],"_postman_id":"38276414-be96-4602-99cd-5f4735381493"}],"id":"d672e700-a087-4a51-84e1-f0959ebfe015","description":"<p>It's possible to manage the following parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Domain Details</code></td>\n<td>Auto Renew. Enabled or disabled.</td>\n</tr>\n<tr>\n<td><code>Contacts</code></td>\n<td>Registrant Contacts.</td>\n</tr>\n<tr>\n<td><code>Whois Privacy</code></td>\n<td>Private or Public.</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer Lock. Locked or unlocked.</td>\n</tr>\n<tr>\n<td><code>Domain Sale</code></td>\n<td>Domain for sale. Minimum Bid Price 100 USD. Service Fee 10%, Bank Transfer: $30.00</td>\n</tr>\n<tr>\n<td><code>Nameservers</code></td>\n<td>Nameservers are used to point your domain name to your website or email service. By default, the nameservers assigned to our domains are: ns1.name.am, ns2.name.am. NOTE: Please keep in mind that you will need to have at least two nameservers. Once you have changed your nameservers, it will take roughly 24 hours for the changes to propagate.</td>\n</tr>\n<tr>\n<td><code>DNS Records</code></td>\n<td>If you use Name.am's nameservers, you can enjoy free DNS management services for added convenience. If you use another hosting provider's nameservers, you’ll need to set up DNS records with that company.</td>\n</tr>\n<tr>\n<td><code>DNSSEC Control</code></td>\n<td>DNSSEC uses a system of public keys and digital signatures to verify data. It simply adds new records to DNS alongside existing records. These new record types, such as RRSIG and DNSKEY, can be retrieved in the same way as common records such as A, CNAME and MX.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6e818b37-3fe7-465e-8726-04582712bbd3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"72fc1926-1c45-4f87-80e2-0ba0da465729","type":"text/javascript","exec":[""]}}],"_postman_id":"d672e700-a087-4a51-84e1-f0959ebfe015"}],"event":[{"listen":"prerequest","script":{"id":"10df4517-1ba1-42a7-b5de-887a62360deb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"64a9b3b9-918a-426c-908c-861ec8882a39","type":"text/javascript","exec":[""]}}]}