Dynadot API
Начало работы с нашим RESTful API
API Dynadot разработан для бесшовной интеграции с вашими системами. Наш API предлагает предсказуемые URL-адреса, ориентированные на ресурсы, поддерживает запросы с телами, закодированными в формате JSON, возвращает ответы в формате JSON и XML, а также соответствует стандартным методам HTTP, аутентификации и кодам ответов.Вы можете использовать API Dynadot как в тестовом, так и в рабочем режимах. Режим определяется по API-ключу, который используется для аутентификации ваших запросов. Тестовый режим позволяет вам симулировать и проверять вашу интеграцию API, не влияя на реальные данные или транзакции.API Dynadot в первую очередь ориентирован на управление доменами, обработку заказов и сопутствующие услуги. Вы можете выполнять такие действия, как регистрация, передача и продление доменов, управление настройками DNS, а также просмотр или обновление заказов в аккаунте.Обратите внимание: Массовое создание, обновление и удаление не поддерживаются, и каждый из этих типов запросов ограничен одним объектом или действием.
Генерация ваших API-ключейПрежде чем начать делать какие-либо запросы к API, необходимо сгенерировать ваш API Key и API Secret.Эти ключи необходимы для аутентификации и обеспечения безопасности ваших действий при взаимодействии с нашим API.Вы можете сгенерировать как API Key, так и API Secret в разделе API в настройках вашего аккаунта.1. Войдите в свой аккаунт на Dynadot.2. Перейдите в Инструменты > API.Сгенерируйте свой API Key и API Secret на этой странице.


Присоединяйтесь к нашему сообществуЕсть идеи или предложения? Поговорите напрямую с нашими профессиональными инженерами.Discord
HTTP МетодAPI использует стандартные методы HTTP для выполнения операций с ресурсами:
MethodDescription
GETGET Request: Retrieve detailed information about a specified resource
POSTPOST Request: Create a new resource
PUTPUT Request: Fully update the specified resource
DELETEDELETE Request: Remove the specified resource
URL
Базовый URL для всех API-запросов:https://api.dynadot.com/
Формат полного URL:http://api.dynadot.com/restful/version_code/resource/{resource_identify}/action
Of course! Please provide the text you would like me to translate into Russian.
https://api.dynadot.com/restful/v1/domains/{domain_name}/search
Sure! Please provide the text you would like me to translate into Russian.
Текущая версия API составляетv
При формировании URL-адреса API-запроса необходимо указывать только основную версию. Небольшие и патч-обновления разработаны с учетом обратной совместимости и не будут вносить изменения, которые могут нарушить работу вашего существующего кода. Это обеспечивает стабильность, позволяя вам получать преимущества от постепенных улучшений и исправлений без необходимости модификации вашей реализации.При выпуске будущих версий мы будем поддерживать обратную совместимость со старыми версиями в течение определенного времени. Новые функции и значительные изменения будут вводиться в рамках основных версий.
HeaderЗаголовок API-запроса содержит метаданные о запросе. Эти метаданные предоставляют важный контекст для правильной обработки запроса сервером. Обычно используемые заголовки включают:
Content-TypeУказывает формат данных, отправляемых в теле запроса. Сервер использует эту информацию для правильного разбора запроса. В настоящее время единственным допустимым значением является: application/json
Of course! Please provide the text you would like me to translate into Russian.
Content-Type: application/json
ПринятьИнформирует сервер о формате ответа, ожидаемом клиентом.Возможные значения: application/json, application/xml
Of course! Please provide the text you would like me to translate into Russian.
Accept: application/json
АвторизацияВсе запросы к API должны включать API-ключ для аутентификации. Вы можете получить свой API-ключ на панели управления вашего аккаунта.You can generate an API key in API setting page
Пример заголовка аутентификации:
Authorization: Bearer YOUR_API_KEY
X-Request-IDЗаголовок X-Request-ID является необязательным заголовком, который используется для уникальной идентификации каждого запроса к API. При его включении этот заголовок помогает отслеживать и сопоставлять запросы между системами и журналами, что упрощает отладку и мониторинг активности API.Значение X-Request-ID должно быть действительным UUID (Универсальный Уникальный Идентификатор), соответствующим стандартному формату: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx (например, 123e4567-e89b-12d3-a456-426614174000).
Of course! Please provide the text you would like me to translate into Russian.
X-Request-ID: 550e8400-e29b-41d4-a716-446655440000
X-ПодписьЗаголовок X-Signature является обязательным механизмом безопасности для транзакционных запросов, включая те, которые извлекают конфиденциальную информацию или обновляют данные. Он обеспечивает подлинность, целостность и невозможность отказа от API-запросов, требуя от клиентов подписывать полезную нагрузку запроса с использованием HMAC-SHA256.
Чтобы сгенерировать подпись, вам понадобятся следующие значенияAPI-ключ: Ваш уникальный API-ключ.2. Полный путь и запрос: Полный путь к конечной точке API вместе с параметрами запроса.3. X-Request-Id: Идентификатор запроса. Если он недоступен, вы можете ввести пустую строку.4. Тело запроса: Тело запроса. Если оно пустое или равно null, вы можете ввести пустую строку.
Строка для подписи представляет собой комбинацию указанных выше значений, соединённых в следующем порядке:
apiKey + "\n" + fullPathAndQuery + "\n" + (xRequestId or empty String) + "\n" + (requestBody or empty String)
Example
apiKey = "your_api_key"
fullPathAndQuery = "/v1/some/endpoint?param=value"
xRequestId = "unique-request-id"
requestBody = "{\"key\":\"value\"}"


stringToSign = "your_api_key\n/v1/some/endpoint?param=value\nunique-request-id\n{\"key\":\"value\"}"
Сгенерируйте подпись HMAC-SHA256После формирования строки для подписи вам необходимо применить HMAC-SHA256 шифрование с использованием вашего секретного ключа. Этот процесс создаст подпись.Подпись создается с использованием следующих шагов:1. Используйте алгоритм HMAC-SHA256.Sure! Please provide the text you would like me to translate into Russian.Используйте секрет в качестве ключа.
Примените сгенерированную подпись в качестве значения X-Signature в заголовке запроса.
Of course! Please provide the text you would like me to translate into Russian.
X-Signature: {HMAC-SHA256 Signature}
BodyТело API-запроса используется для отправки данных на сервер. Обычно оно включается в запросы POST, PUT или PATCH (не обычно для запросов GET или DELETE).
Sure! Please provide the text you would like me to translate into Russian.Формат данных тела определяется заголовком Content-Type. Некоторые распространенные форматы включают:
JSON
{
  • domainName: "domain.com",
  • showPrice: "yes",
  • currency: "USD"
}
Типичные случаи использованияPOST Запросы: Метод POST используется для создания нового ресурса на сервере. Тело запроса обычно содержит детали ресурса.PUT Запросы: Метод PUT используется для обновления существующего ресурса путем его полного замещения. Тело запроса содержит полностью обновленный ресурс.GET-запросы: Метод DELETE используется для удаления существующего ресурса с сервера. У него нет тела запроса.DELETE Запросы: Метод GET используется для получения существующего ресурса с сервера. У него нет тела запроса
Response FormatВсе ответы API возвращаются в формате JSON или XML, при этом формат данных тела определяется заголовком Accept, предоставляя запрашиваемые данные или сообщение об ошибке, если это необходимо.
Sure! Please provide the text you would like me to translate into Russian.Sure! Please provide the text you would like me to translate into Russian.
Код: Статус запросаСообщение: Более подробное описание статусаДанные: Тело ответа
Sure! Please provide the text you would like me to translate into Russian.
{
  • Code: "200",
  • Message: "Success",
  • Data: {}
}
Обработка ошибокКоды состояния HTTP — это стандартизированные трехзначные числа, которые сервер возвращает, чтобы указать результат запроса клиента. Они предоставляют важную информацию о том, был ли запрос успешно обработан, требует ли он дальнейших действий или возникла ошибка. Эти коды делятся на пять категорий, каждая из которых представляет собой отдельный тип ответа.Коды состояния нашего API соответствуют протоколу HTTP/1.1, широко принятому стандарту, который обеспечивает последовательное и надежное взаимодействие. Используя HTTP/1.1, мы используем такие функции, как постоянные соединения и улучшенное кэширование, чтобы оптимизировать взаимодействие между клиентом и сервером.
2xx (Успешно): Указывает на то, что команда была получена и принята.
200Код состояния указывает на то, что запрос выполнен успешно.
201Код состояния указывает на то, что запрос был выполнен, и в результате было создано одно или несколько новых ресурсов.
202Код состояния указывает на то, что запрос принят для обработки, но обработка еще не завершена.
249Пользователь отправил слишком много запросов за короткий промежуток времени.
4xx (Ошибка клиента): Указывает на то, что клиент допустил ошибку в запросе, например, предоставив недопустимый ввод или не имея надлежащей авторизации.
400Код состояния указывает на то, что сервер не может или не будет обрабатывать запрос из-за того, что воспринимается как ошибка клиента.
401Код состояния указывает на то, что запрос не был выполнен, так как отсутствуют действительные учетные данные для аутентификации целевого ресурса.
402Код статуса указывает на то, что запрос не был выполнен из-за проблемы с оплатой.
403Код состояния указывает на то, что сервер понял запрос, но отказывается его выполнить.
404Код состояния указывает на то, что исходный сервер не нашел актуальное представление для целевого ресурса или не желает раскрывать, что такое представление существует.
409Запрос не может быть выполнен из-за конфликта с текущим состоянием ресурса.
5xx (Ошибка сервера): Указывает на то, что сервер столкнулся с ошибкой или не может выполнить запрос.
500Код состояния указывает на то, что сервер столкнулся с неожиданным условием, которое помешало ему выполнить запрос.
501Код состояния указывает на то, что сервер не поддерживает функциональность, необходимую для выполнения запроса.
502Код состояния указывает на то, что сервер, действуя в качестве шлюза или прокси, получил недействительный ответ от входящего сервера, к которому он обращался при попытке выполнить запрос.
503Код состояния указывает на то, что сервер в данный момент не может обработать запрос из-за временной перегрузки или запланированного обслуживания, которое, вероятно, будет устранено после некоторой задержки.
504Код состояния указывает на то, что сервер, действуя как шлюз или прокси, не получил своевременный ответ от вышестоящего сервера, к которому ему нужно было получить доступ для завершения запроса.
КодСтатус Название
200Успех
201Создано
202Принято
249Слишком много запросов
400Неверный запрос
401Неавторизованный
402Требуется оплата
403Запрещено
404Не найдено
409Конфликт
500Внутренняя ошибка сервера
501Не реализовано
502Плохой шлюз
503Сервис недоступен
504Таймаут шлюза
Ограничение скоростиЗапросы должны отправляться по https (защищенный сокет) для обеспечения безопасности. Только 1 запрос может обрабатываться одновременно, поэтому, пожалуйста, дождитесь завершения вашего текущего запроса, прежде чем отправлять другой.
Вы получите разные количества нитей в зависимости от уровня цен вашего аккаунта:
Price levelAccount
Regular1 thread
Bulk5 threads
Super Bulk25 threads
Of course! Please provide the text you would like me to translate into Russian.
<Response>
  <status>
    <code>429</code>
    <message>Too Many Requests</message>
  </status>
  <error>
    <description>You have reached the maximum allowed requests within the concurrent limit of your account. Please try again later.</description>
  </error>
</Response>
{
  • code: 429,
  • message: "Too Many Requests",
  • : {1 item}
}
Обзор журнала изменений
Журнал изменений — это подробная запись изменений, улучшений, исправлений ошибок и новых функций, введенных в каждой версии API. Он обеспечивает прозрачность для пользователей и разработчиков, документируя влияние каждого обновления. Журнал состоит из двух ключевых частей:
Версия APIЭта часть подчеркивает систему версионирования API, которая помогает разработчикам отслеживать эволюцию функций и обеспечивать совместимость. Каждая версия API идентифицируется уникальным номером версии (например, v1.0.1, v2.2.3) и представляет собой значимую веху или релиз. Версионирование позволяет пользователям поддерживать интеграции с минимальными перебоями, выбирая обновления, когда они готовы.
История измененийИстория изменений предоставляет подробную информацию об обновлениях, исправлениях ошибок, устареваниях и улучшениях, введенных в каждой версии. Она описывает конкретные изменения, внесенные в конечные точки, параметры, механизмы аутентификации или форматы ответов. Этот раздел обеспечивает полную прозрачность для разработчиков относительно того, что изменилось, и позволяет им соответственно корректировать свои реализации. Поддерживая четкий и детализированный журнал изменений, мы стремимся предоставить разработчикам инструменты и информацию, необходимые для эффективного и уверенного управления интеграциями.
Версия API
Наше API в настоящее время находится на версииv
Коды версий используются для систематической идентификации и управления обновлениями API. Они следуют формату семантического версионирования (SemVer):
Sure! Please provide the text you would like me to translate into Russian.Sure! Please provide the text you would like me to translate into Russian.Sure! Please provide the text you would like me to translate into Russian.
Каждый компонент кода версии выполняет определенную функцию и помогает разработчикам эффективно передавать объем и тип изменений.
Основная версияОпределение: Представляет собой значительные изменения, которые могут нарушить обратную совместимость.Of course! Please provide the text you would like me to translate into Russian.<Major>.x.x
Примеры:v1.0.0->v2.0.0Полный редизайн API или несовместимые изменения схемы.
Небольшая версияОпределение: Указывает на добавление функций, совместимых с предыдущими версиями.Of course! Please provide the text you would like me to translate into Russian.x.<Minor>.x
Примеры:v1.0.0->v1.1.0Добавление новых конечных точек или методов при сохранении обратной совместимости.
Версия патчаОпределение: Относится к обратнос совместимым исправлениям ошибок или незначительным улучшениям.Of course! Please provide the text you would like me to translate into Russian.x.x.<Patch>
Примеры:v1.0.0->v1.1.0Исправление незначительной ошибки в конечной точке API.
Журнал изменений API
Журнал изменений — это подробная запись изменений, улучшений, исправлений ошибок и новых функций, введенных в каждой версии программного обеспечения или API. Он обеспечивает прозрачность для пользователей и разработчиков, документируя влияние каждого обновления.
Типичная запись в журнале изменений включает:Описание: Краткое объяснение того, что было изменено.Затронутые компоненты: Конкретные модули, конечные точки или функции, на которые повлиял данный изменения.
Пример: Добавлена поддержка этой новой команды API<Регистрация домена>
История измененийСледите за всеми изменениями в API Dynadot.
    REGISTER Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the register command, the following parameters should be included:
    Request Parameters Expand All
    • The domain name.
      Show Properties
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • If you're considering registering a premium domain.
    • The coupon code plan to be used in the order.
    Result Parameters Expand All
    • The domain name.
    • The expiration date in timestamp.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/register
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • : {13 items},
    • currency: "String",
    • register_premium: false,
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String",
    • data: {
      • domain_name: "String",
      • expiration_date: "Long"
      }
    }
    RENEW Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the renew command, the following parameters should be included:
    Request Parameters Expand All
    • renewal duration in years.
    • year to renew.
    • The currency you would like to use for the purchase.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • coupon code.
    • Do not renew if late renew fee needed.
    Result Parameters Expand All
    • expiration date of the domain.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/renew
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • duration: 0,
    • year: 0,
    • currency: "String",
    • coupon: "String",
    • no_renew_if_late_renew_fee_needed: false
    }
    Response
    {
    • code: "Integer",
    • message: "String",
    • data: {
      • expiration_date: "Long"
      }
    }
    TRANSFER_IN Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the transfer_in command, the following parameters should be included:
    Request Parameters Expand All
    • The domain name.
      Show Properties
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • If you're considering transfer a premium domain.
    • The coupon code plan to be used in the order.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_in
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • : {13 items},
    • currency: "String",
    • transfer_premium: false,
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    RESTORE Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the restore command, the following parameters should be included:
    Request Parameters Expand All
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • The coupon code plan to be used in the order.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/restore
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • currency: "String",
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    GRACE_DELETE Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the grace_delete command, the following parameters should be included:
    Request Parameters Expand All
    • If need to add this domain to grace delete waiting list if the grace delete quota has been reached.
    Api Request and Header
    DELETE https://api.dynadot.com/restful/v1/domains/{domain_name}/grace_delete
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    SET_FOLDER Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the set_folder command, the following parameters should be included:
    Request Parameters Expand All
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/folders/{folder_name}
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {}
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_DOMAIN_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_domain_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
      • Forward status of your domain you want, default value is "true", if you want to forward permanently, use this parameter with "false".
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/domain_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • forward_url: "String",
      • is_temporary: false
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_STEALTH_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_stealth_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
      • The title of the page.
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/stealth_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • stealth_url: "String",
      • stealth_title: "String"
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_EMAIL_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_email_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • Forward type, it can be "donot": Do not forward email, "mx": Deliver email to another mail host (MX record), "forward": Deliver email to another mail host.
        Supported valuesNONE, MX, FORWARD
      • Only used when "forwardType" is "forward".
        Show Properties
      • Only used when "forwardType" is "mx".
        Show Properties
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/email_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {}
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_RENEW_OPTION Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_renew_option command, the following parameters should be included:
      Request Parameters Expand All
      • You can choose a value from the following list to represent.
        Supported valuesRESET, AUTO, DONOT
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/renew_option
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • renew_option: "String"
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_CONTACTS Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_contacts command, the following parameters should be included:
      Request Parameters Expand All
      • Please select the contact ID you want to set as the registered contact ID.
      • Please select the contact ID you want to set as the admin contact ID.
      • Please select the contact ID you want to set as the technical contact ID.
      • Please select the contact ID you want to set as the billing contact ID.
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/contacts
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • registrant_contact_id: 0,
      • admin_contact_id: 0,
      • technical_contact_id: 0,
      • billing_contact_id: 0
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      GET_TRANSFER_STATUS Command
      Support multi-thread
      Support API Sandbox
      If calling the get_transfer_status command, the following parameters should be included:
      Request Parameters Expand All
        Result Parameters Expand All
        • The domain transfer status list information.
          Show Properties
        Api Request and Header
        GET https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_status/{transfer_type}
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        Response
        {}
        DOMAIN_GET_NAMESERVER Command
        Support multi-thread
        Support API Sandbox
        If calling the domain_get_nameserver command, the following parameters should be included:
        Request Parameters Expand All
        • The domain whose name server info you want to get.
        Result Parameters Expand All
        • The list of nameservers for the domain.
        • The name of the nameserver.
        Api Request and Header
        GET https://api.dynadot.com/restful/v1/domains/{domain_name}/nameservers
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        Response
        {
        • code: "Integer",
        • message: "String",
        • data: {}
        }
        DOMAIN_SET_NAMESERVER Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the domain_set_nameserver command, the following parameters should be included:
        Request Parameters Expand All
        • The list of nameservers you want to set.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/nameservers
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {}
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_HOSTING Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_hosting command, the following parameters should be included:
        Request Parameters Expand All
        • Type of the hosting you want, you can select in "Advanced" and "Basic".
          Supported valuesBASIC, ADVANCED
        • Only when hostingType is "advanced", can you use this parameter as "true".
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/hosts
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • hosting_type: "String",
        • is_model_view: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_PARKING Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_parking command, the following parameters should be included:
        Request Parameters Expand All
        • If you do not want a 3rd-party ads, you can use this parameter with "false".
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/parking
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • with_ads: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_PRIVACY Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_privacy command, the following parameters should be included:
        Request Parameters Expand All
        • The privacy status of the domain you want to set.
          Supported valuesOFF, PARTIAL, FULL
        • The whois privacy option of the domain you want to set.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/privacy
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • privacy_level: "String",
        • whois_privacy_option: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_DNSSEC Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_dnssec command, the following parameters should be included:
        Request Parameters Expand All
        • The key tag is a 16-bit unsigned integer (0 - 65535) used to uniquely identify a DNSSEC key pair. It ensures DS records match their corresponding DNS KEY records during DNSSEC validation.
        • You can choose the digest_type type listed below.
          Supported valuesSHA1, SHA256, GOST, SHA384
        • Please enter the value corresponding to the digest type you have selected.
        • You can choose the type of algorithm listed below.
          Supported valuesRSA_MD5, DIFFIE_HELLMAN, DSA_SHA1, ELLIPTIC_CURVE, RSA_SHA1, DSA_NSEC3_SHA1, RSA_SHA1_NSEC3_SHA1, RSA_SHA256, RSA_SHA512, GOST, ECDSA_P256_SHA256, ECDSA_P384_SHA384, ED25519, ED448, INDIRECT, PRIVATE_DNS, PRIVATE_OID
        • You can choose the type of flags listed below.
          Supported valuesZSK, KSK
        • The public key must be in base64 encoding.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • key_tag: 0,
        • digest_type: "String",
        • digest: "String",
        • algorithm: "String",
        • flags: "String",
        • public_key: "String"
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        GET_DNSSEC Command
        Support multi-thread
        Support API Sandbox
        If calling the get_dnssec command, the following parameters should be included:
        Request Parameters Expand All
          Result Parameters Expand All
          • dnssecInfoList.
            Show Properties
          Api Request and Header
          GET https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
          Content-Type: application/json
          Accept: application/json
          Authorization: Bearer API_KEY
          Response
          {
          • code: "Integer",
          • message: "String",
          • data: {
            • dnssec_info_list: [
              1. {
                • key_tag: "Integer",
                • algorithm: "String",
                • digest_type: "String",
                • digest: "String"
                }
              ]
            }
          }
          CLEAR_DNSSEC Command
          Support multi-thread
          Support API Sandbox
          Require X-Signature
          If calling the clear_dnssec command, the following parameters should be included:
          Request Parameters Expand All
            Api Request and Header
            DELETE https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            CLEAR_DOMAIN_SETTING Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the clear_domain_setting command, the following parameters should be included:
            Request Parameters Expand All
            • The service you want to clear the domain settings for, you can enter forward, stealth, email_forwarding, free, dns, nameservers.
              Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
            Api Request and Header
            PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/clear_domain_setting
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • service_type: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            SET_DOMAIN_LOCK_STATUS Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the set_domain_lock_status command, the following parameters should be included:
            Request Parameters Expand All
            • Set to true to lock the domain, false to unlock the domain.
            Api Request and Header
            PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/domain_lock
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • lock: false
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            PUSH Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the push command, the following parameters should be included:
            Request Parameters Expand All
            • The receiver's push username.
            • The receiver email.
            Api Request and Header
            POST https://api.dynadot.com/restful/v1/domains/{domain_name}/push
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • receiver_push_username: "String",
            • receiver_email: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            ACCEPT_PUSH Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the accept_push command, the following parameters should be included:
            Request Parameters Expand All
            • The action of the order to be processed.
              Supported valuesACCEPT, DECLINE
            Api Request and Header
            POST https://api.dynadot.com/restful/v1/domains/{domain_name}/accept_push
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • push_action: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            GET_PENDING_PUSH_ACCEPT_REQUEST Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the get_pending_push_accept_request command, the following parameters should be included:
            Request Parameters Expand All
              Result Parameters Expand All
              • List of domain names.
              Api Request and Header
              GET https://api.dynadot.com/restful/v1/domains/pending_accept_pushes
              Content-Type: application/json
              Accept: application/json
              Authorization: Bearer API_KEY
              X-Signature: {signature}
              Response
              {}
              GET_DNS Command
              Support multi-thread
              Support API Sandbox
              Require X-Signature
              If calling the get_dns command, the following parameters should be included:
              Request Parameters Expand All
                Result Parameters Expand All
                • The dns setting of the domain.
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/{domain_name}/records
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Response
                {}
                SET_DNS Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the set_dns command, the following parameters should be included:
                Request Parameters Expand All
                • List of main DNS records, max 20.
                  Show Properties
                • List of sub DNS records, max 100.
                  Show Properties
                • Time to live for DNS records, default is 86400.
                • Add DNS records to current settings, default is false.
                Api Request and Header
                POST https://api.dynadot.com/restful/v1/domains/{domain_name}/records
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Request Body
                {
                • : [1 item],
                • : [1 item],
                • ttl: 0,
                • add_dns_to_current_setting: false
                }
                Response
                {
                • code: "Integer",
                • message: "String"
                }
                SET_NOTE Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the set_note command, the following parameters should be included:
                Request Parameters Expand All
                • this domain's note.
                Api Request and Header
                PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/notes
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Request Body
                {
                • note: "String"
                }
                Response
                {
                • code: "Integer",
                • message: "String"
                }
                GET_TRANSFER_AUTH_CODE Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the get_transfer_auth_code command, the following parameters should be included:
                Request Parameters Expand All
                • Set to true if you want to generate a new auth code.
                • Set to true if you want to unlock the domain for transfer.
                Result Parameters Expand All
                • The transfer auth code.
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_auth_code
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Response
                {
                • code: "Integer",
                • message: "String",
                • data: {
                  • auth_code: "String"
                  }
                }
                GET_TLD_PRICE Command
                Support multi-thread
                Support API Sandbox
                If calling the get_tld_price command, the following parameters should be included:
                Request Parameters Expand All
                • The currency you would like to use for the search.
                  Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                • The page index.
                • The count per page.
                • The sort : nameAsc, nameDesc, etc.
                  Supported valuesRANK_ASC, RANK_DESC, NAME_ASC, NAME_DESC, SALES_ASC, SALES_DESC, LAUNCH_DATE_ASC, LAUNCH_DATE_DESC, COUNT_ASC, COUNT_DESC, REGISTRY_ASC, REGISTRY_DESC
                • Whether to show multi-year prices.
                Result Parameters Expand All
                • The page index.
                • The count per page.
                • The sort : nameAsc, nameDesc, etc.
                  Supported valuesRANK_ASC, RANK_DESC, NAME_ASC, NAME_DESC, SALES_ASC, SALES_DESC, LAUNCH_DATE_ASC, LAUNCH_DATE_DESC, COUNT_ASC, COUNT_DESC, REGISTRY_ASC, REGISTRY_DESC
                • The price level.
                • The currency you would like to use for the search.
                • Whether to show multi-year prices.
                • The list of TLD prices.
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/get_tld_price
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                Response
                {
                • code: "Integer",
                • message: "String",
                • data: {
                  • page_index: "Integer",
                  • count_per_page: "Integer",
                  • sort: "String",
                  • price_level: "String",
                  • currency: "String",
                  • show_multi_year_price: "String",
                  • tldPriceList: [
                    1. {
                      • tld: "String",
                      • usage: "String",
                      • priceUnit: "String",
                      • allYearsRegisterPrice: [],
                      • allYearsRenewPrice: [],
                      • transferPrice: "String",
                      • restorePrice: "String",
                      • graceFeePrice: "String",
                      • supportPrivacy: "String",
                      • gracePeriodUnit: "String",
                      • renewGracePeriod: "String",
                      • restorePeriod: "String",
                      • deleteGracePeriod: "String",
                      • isIdn: "String",
                      • restriction: "String"
                      }
                    ]
                  }
                }
                DOMAIN_LIST Command
                Support multi-thread
                Support API Sandbox
                If calling the domain_list command, the following parameters should be included:
                Request Parameters Expand All
                • The sort type.
                  Supported valuesCOUNT_ASC, COUNT_DESC, NAME_ASC, NAME_DESC
                • The count per page.
                • The page index.
                Result Parameters Expand All
                • .
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                Response
                GET_CONTACT Command
                Support multi-thread
                Support API Sandbox
                If calling the get_contact command, the following parameters should be included:
                Request Parameters Expand All
                  Result Parameters Expand All
                  • The contact object.
                    Show Properties
                  Api Request and Header
                  GET https://api.dynadot.com/restful/v1/contacts/{contact_id}
                  Content-Type: application/json
                  Accept: application/json
                  Authorization: Bearer API_KEY
                  Response
                  {
                  • code: "Integer",
                  • message: "String",
                  • data: {
                    • organization: "String",
                    • name: "String",
                    • email: "String",
                    • phone_number: "String",
                    • phone_cc: "String",
                    • fax_number: "String",
                    • fax_cc: "String",
                    • address1: "String",
                    • address2: "String",
                    • city: "String",
                    • state: "String",
                    • zip: "String",
                    • country: "String"
                    }
                  }
                  CONTACT_LIST Command
                  Support multi-thread
                  Support API Sandbox
                  If calling the contact_list command, the following parameters should be included:
                  Request Parameters Expand All
                    Result Parameters Expand All
                    • The list of contacts.
                      Show Properties
                    Api Request and Header
                    GET https://api.dynadot.com/restful/v1/contacts
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_list: [
                        1. {
                          • contact_id: "Integer",
                          • organization: "String",
                          • name: "String",
                          • email: "String",
                          • phone_number: "String",
                          • phone_cc: "String",
                          • fax_number: "String",
                          • fax_cc: "String",
                          • address1: "String",
                          • address2: "String",
                          • city: "String",
                          • state: "String",
                          • zip: "String",
                          • country: "String"
                          }
                        ]
                      }
                    }
                    CONTACT_CREATE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_create command, the following parameters should be included:
                    Request Parameters Expand All
                    • The Contact.
                      Show Properties
                    Result Parameters Expand All
                    • .
                    Api Request and Header
                    POST https://api.dynadot.com/restful/v1/contacts
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    X-Signature: {signature}
                    Request Body
                    {
                    • : {14 items}
                    }
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_id: "Integer"
                      }
                    }
                    CONTACT_UPDATE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_update command, the following parameters should be included:
                    Request Parameters Expand All
                    • The contact.
                      Show Properties
                    Result Parameters Expand All
                    • The contact id.
                    Api Request and Header
                    PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    X-Signature: {signature}
                    Request Body
                    {
                    • : {14 items}
                    }
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_id: "Integer"
                      }
                    }
                    CONTACT_DELETE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_delete command, the following parameters should be included:
                    Request Parameters Expand All
                      Result Parameters Expand All
                      • The Id of contact.
                      Api Request and Header
                      DELETE https://api.dynadot.com/restful/v1/contacts/{contact_id}
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      CREATE_CN_AUDIT Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the create_cn_audit command, the following parameters should be included:
                      Request Parameters Expand All
                      • When the contact type is ENTERPRISE, you need to enter enterprise_id_type,enterprise_license_id, enterprise_url.
                        Supported valuesINDIVIDUAL, ENTERPRISE
                      • Individual ID type.
                        Supported valuesJGZ, SFZ, HZ, GAJMTX, TWJMTX, WJLSFZ, GAJZZ, TWJZZ, QT
                      • Document of natural person license ID. The file url on the server. Only jpg, gif, png, jpeg are allowed.
                      • The individual license ID.
                      • Enterprise type.
                        Supported valuesORG, YYZZ, TYDM, BDDM, JDDWFW, SYDWFR, WGCZJG, SHTTFR, ZJCS, MBFQY, JJHFR, LSZY, WGZHWH, WLCZJG, SFJD, JWJG, SHFWJG, MBXXBX, YLJGZY, GZJGZY, BJWSXX, QTTYDM, QT
                      • The License number of enterprise document.
                      • Document of enterprise license. The file url on the server. Only jpg, gif, png, jpeg are allowed.
                      Api Request and Header
                      POST https://api.dynadot.com/restful/v1/contacts/{contact_id}/create_cn_audit
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {
                      • contact_type: "String",
                      • individual_id_type: "String",
                      • individual_url: "String",
                      • individual_license_id: "String",
                      • enterprise_id_type: "String",
                      • enterprise_license_id: "String",
                      • enterprise_url: "String"
                      }
                      Response
                      {
                      • code: "Integer",
                      • message: "String"
                      }
                      GET_CN_AUDIT_STATUS Command
                      Support multi-thread
                      Support API Sandbox
                      If calling the get_cn_audit_status command, the following parameters should be included:
                      Request Parameters Expand All
                      • If you query the audit result of the cnnic-gtld, please set this parameter to true.
                      Result Parameters Expand All
                      • The audit status of cnnic audit record. You may got 'processing' or 'waiting for cnnic' or 'failed'. If failed, we will send you an email.
                      • If the audit unpassable, the failed reason will be displayed.
                      Api Request and Header
                      GET https://api.dynadot.com/restful/v1/contacts/{contact_id}/get_cn_audit_status
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • audit_status: "String"
                        }
                      }
                      SET_CONTACT_EU_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_eu_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for eu.
                        Show Properties
                      Result Parameters Expand All
                      • The contact.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_eu_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_LT_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_lt_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for lt.
                        Show Properties
                      Result Parameters Expand All
                      • The account ID.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_lt_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_LV_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_lv_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for lv.
                        Show Properties
                      Result Parameters Expand All
                      • The contact's ID you want to edit.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_lv_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_IT_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_it_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for it.
                        Show Properties
                      Result Parameters Expand All
                      • The contact's ID you want to edit.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_it_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      NAMESERVER_GET Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the nameserver_get command, the following parameters should be included:
                      Request Parameters Expand All
                        Result Parameters Expand All
                        • The name server.
                          Show Properties
                        Api Request and Header
                        GET https://api.dynadot.com/restful/v1/nameservers/{nameserver}
                        Content-Type: application/json
                        Accept: application/json
                        Authorization: Bearer API_KEY
                        X-Signature: {signature}
                        Response
                        {
                        • code: "Integer",
                        • message: "String",
                        • data: {
                          • server_name: "String",
                          • ip_list: [
                            1. "String"
                            ]
                          }
                        }
                        NAMESERVER_LIST Command
                        Support multi-thread
                        Support API Sandbox
                        Require X-Signature
                        If calling the nameserver_list command, the following parameters should be included:
                        Request Parameters Expand All
                          Result Parameters Expand All
                          • The list of nameservers.
                            Show Properties
                          Api Request and Header
                          GET https://api.dynadot.com/restful/v1/nameservers
                          Content-Type: application/json
                          Accept: application/json
                          Authorization: Bearer API_KEY
                          X-Signature: {signature}
                          Response
                          {}
                          NAMESERVER_REGISTER Command
                          Support multi-thread
                          Support API Sandbox
                          Require X-Signature
                          If calling the nameserver_register command, the following parameters should be included:
                          Request Parameters Expand All
                          • The name server.
                            Show Properties
                          Api Request and Header
                          POST https://api.dynadot.com/restful/v1/nameservers/register
                          Content-Type: application/json
                          Accept: application/json
                          Authorization: Bearer API_KEY
                          X-Signature: {signature}
                          Request Body
                          {}
                          Response
                          {
                          • code: "Integer",
                          • message: "String"
                          }
                          NAMESERVER_ADD_EXTERNAL Command
                          Support multi-thread
                          Support API Sandbox
                          Require X-Signature
                          If calling the nameserver_add_external command, the following parameters should be included:
                          Request Parameters Expand All
                            Api Request and Header
                            POST https://api.dynadot.com/restful/v1/nameservers/{nameserver}/add_external
                            Content-Type: application/json
                            Accept: application/json
                            Authorization: Bearer API_KEY
                            X-Signature: {signature}
                            Request Body
                            {}
                            Response
                            {
                            • code: "Integer",
                            • message: "String"
                            }
                            NAMESERVER_SET_IP Command
                            Support multi-thread
                            Support API Sandbox
                            Require X-Signature
                            If calling the nameserver_set_ip command, the following parameters should be included:
                            Request Parameters Expand All
                            • The list of IPs you want to set to the name server.
                            Result Parameters Expand All
                            • The name server host.
                            • server id.
                            Api Request and Header
                            PUT https://api.dynadot.com/restful/v1/nameservers/{nameserver}/set_ip
                            Content-Type: application/json
                            Accept: application/json
                            Authorization: Bearer API_KEY
                            X-Signature: {signature}
                            Request Body
                            {}
                            Response
                            {
                            • code: "Integer",
                            • message: "String",
                            • data: {
                              • host: "String",
                              • server_id: "Integer"
                              }
                            }
                            NAMESERVER_DELETE Command
                            Support multi-thread
                            Support API Sandbox
                            Require X-Signature
                            If calling the nameserver_delete command, the following parameters should be included:
                            Request Parameters Expand All
                              Api Request and Header
                              DELETE https://api.dynadot.com/restful/v1/nameservers/{nameserver}
                              Content-Type: application/json
                              Accept: application/json
                              Authorization: Bearer API_KEY
                              X-Signature: {signature}
                              Response
                              {
                              • code: "Integer",
                              • message: "String"
                              }
                              GET_INFO Command
                              Support multi-thread
                              Support API Sandbox
                              Require X-Signature
                              If calling the get_info command, the following parameters should be included:
                              Request Parameters Expand All
                                Result Parameters Expand All
                                • The account information.
                                  Show Properties
                                Api Request and Header
                                GET https://api.dynadot.com/restful/v1/accounts/info
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Response
                                {
                                • code: "Integer",
                                • message: "String",
                                • data: {
                                  • account_info: {
                                    • username: "String",
                                    • forum_name: "String",
                                    • avatar_url: "String",
                                    • account_contact: {
                                      • organization: "String",
                                      • name: "String",
                                      • email: "String",
                                      • phone_number: "String",
                                      • phone_cc: "String",
                                      • fax_number: "String",
                                      • fax_cc: "String",
                                      • address1: "String",
                                      • address2: "String",
                                      • city: "String",
                                      • state: "String",
                                      • zip: "String",
                                      • country: "String"
                                      },
                                    • customer_since: "Long",
                                    • account_lock: "String",
                                    • custom_time_zone: "String",
                                    • default_registrant_contact_id: "Integer",
                                    • default_admin_contact_id: "Integer",
                                    • default_technical_contact_id: "Integer",
                                    • default_billing_contact_id: "Integer",
                                    • default_name_server_settings: {
                                      • type: "String",
                                      • with_ads: "String",
                                      • forward_to: "String",
                                      • forward_type: "String",
                                      • website_title: "String",
                                      • ttl: "String",
                                      • email_forwarding: {
                                        • type: "String"
                                        }
                                      },
                                    • total_spending: "String",
                                    • price_level: "String",
                                    • account_balance: "String",
                                    • balance_list: [
                                      1. {
                                        • currency: "String",
                                        • amount: "String"
                                        }
                                      ]
                                    }
                                  }
                                }
                                SET_DEFAULT_NAMESERVERS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_nameservers command, the following parameters should be included:
                                Request Parameters Expand All
                                • The list of nameservers you want to set.
                                Result Parameters Expand All
                                • The list of nameserver you want to set.
                                  Show Properties
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_nameservers
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {}
                                Response
                                {
                                • code: "Integer",
                                • message: "String",
                                • data: {}
                                }
                                SET_DEFAULT_DOMAIN_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_domain_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                • Whether the forwarding is temporary or permanent. If set to true, the forwarding will be removed after the first request is forwarded.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_domain_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • forward_url: "String",
                                • is_temporary: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_STEALTH_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_stealth_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The URL you want to set as the default stealth URL.
                                • The title of the page that the domain will forward to.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_stealth_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • stealth_url: "String",
                                • stealth_title: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_EMAIL_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_email_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The type of email forwarding you want to set.
                                  Supported valuesMTYPE_NONE, MTYPE_FORWARD, MTYPE_MX
                                • The email alias list you want to set.
                                  Show Properties
                                • The mail exchange list you want to set.
                                  Show Properties
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_email_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {}
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_CONTACTS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_contacts command, the following parameters should be included:
                                Request Parameters Expand All
                                • The ID of the contact you want to set as the default WHOIS registrant contact.
                                • The ID of the contact you want to set as the default WHOIS admin contact.
                                • The ID of the contact you want to set as the default WHOIS technical contact.
                                • The ID of the contact you want to set as the default WHOIS billing contact.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_contacts
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • registrant_contact_id: 0,
                                • admin_contact_id: 0,
                                • technical_contact_id: 0,
                                • billing_contact_id: 0
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_PARKING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_parking command, the following parameters should be included:
                                Request Parameters Expand All
                                • If you do not want a 3rd-party ads on the parking page.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_parking
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • with_ads: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_HOSTING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_hosting command, the following parameters should be included:
                                Request Parameters Expand All
                                • The default hosting type of the account you want to set.
                                  Supported valuesBASIC, ADVANCED
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_hosts
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • hosting_type: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_RENEW_OPTION Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_renew_option command, the following parameters should be included:
                                Request Parameters Expand All
                                • The renew option you want to set.
                                  Supported valuesRESET, AUTO, DONOT
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_renew_option
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • renew_option: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                CLEAR_DEFAULT_SETTING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the clear_default_setting command, the following parameters should be included:
                                Request Parameters Expand All
                                • The service type for the default account setting you wish to reset.
                                  Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/clear_default_setting
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • service_type: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_DNS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_dns command, the following parameters should be included:
                                Request Parameters Expand All
                                • List of main DNS records, max 20.
                                  Show Properties
                                • List of sub DNS records, max 100.
                                  Show Properties
                                • Time to live for DNS records, default is 86400.
                                • Add DNS records to current settings, default is false.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/default_records
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • : [1 item],
                                • : [1 item],
                                • ttl: 0,
                                • add_dns_to_current_setting: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                FOLDER_LIST Command
                                Support multi-thread
                                Support API Sandbox
                                If calling the folder_list command, the following parameters should be included:
                                Request Parameters Expand All
                                  Result Parameters Expand All
                                  • The list of folders.
                                    Show Properties
                                  Api Request and Header
                                  GET https://api.dynadot.com/restful/v1/folders
                                  Content-Type: application/json
                                  Accept: application/json
                                  Authorization: Bearer API_KEY
                                  Response
                                  {}
                                  FOLDER_CREATE Command
                                  Support multi-thread
                                  Support API Sandbox
                                  Require X-Signature
                                  If calling the folder_create command, the following parameters should be included:
                                  Request Parameters Expand All
                                  • The name of the folder that you wish to create.
                                  Result Parameters Expand All
                                  • The name of the folder you created.
                                  • The ID of the folder you created.
                                  Api Request and Header
                                  POST https://api.dynadot.com/restful/v1/folders
                                  Content-Type: application/json
                                  Accept: application/json
                                  Authorization: Bearer API_KEY
                                  X-Signature: {signature}
                                  Request Body
                                  {
                                  • folder_name: "String"
                                  }
                                  Response
                                  {
                                  • code: "Integer",
                                  • message: "String",
                                  • data: {
                                    • folder_id: "Integer",
                                    • folder_name: "String"
                                    }
                                  }
                                  FOLDER_DELETE Command
                                  Support multi-thread
                                  Support API Sandbox
                                  Require X-Signature
                                  If calling the folder_delete command, the following parameters should be included:
                                  Request Parameters Expand All
                                    Api Request and Header
                                    DELETE https://api.dynadot.com/restful/v1/folders/{folder_name}
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_NAME Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_name command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The new name for the folder you wish to configure.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/name
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • new_folder_name: "String"
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_DNS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_dns command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The DNS main-records that you wish to configure for the DNS records.
                                      Show Properties
                                    • The DNS sub-records that you wish to configure for the DNS records.
                                      Show Properties
                                    • The TTL("Time To Live") of you wish to configure DNS records.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/records
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • : [1 item],
                                    • : [1 item],
                                    • ttl: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_NAMESERVER Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_nameserver command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The list of nameservers you wish to configure.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Result Parameters Expand All
                                    • servers.
                                      Show Properties
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/nameservers
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String",
                                    • data: {}
                                    }
                                    FOLDER_SET_CONTACTS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_contacts command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The ID of the contact you wish to configure as the registrant contact.
                                    • The ID of the contact you wish to configure as the administrative contact.
                                    • The ID of the contact you wish to configure as the technical contact.
                                    • The ID of the contact you wish to configure as the billing contact.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/contacts
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • reg_contact_id: 0,
                                    • admin_contact_id: 0,
                                    • tech_contact_id: 0,
                                    • bill_contact_id: 0,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_PARKING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_parking command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • Determines whether to display advertisements on the parking page. Set to 'true' to enable ads, or 'false' to keep the page ad-free. Default is 'false'.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/parking
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • with_ads: false,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_DOMAIN_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_domain_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                    • The forward status of your domain you want, default value is "true", if you wish to forward permanently, use this parameter with "false".
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/domain_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • forward_url: "String",
                                    • is_temporary: false,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_STEALTH_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_stealth_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                    • The title of the page that the domain will forward to.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/stealth_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • stealth_url: "String",
                                    • stealth_title: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_EMAIL_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_email_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The email forwarding type you wish to configure email forwarding, MTYPE_NONE: Do not forward email, MTYPE_FORWARD: Deliver email to another mail host, MTYPE_MX: Deliver email to another mail host (MX record).
                                      Supported valuesMTYPE_NONE, MTYPE_FORWARD, MTYPE_MX
                                    • The email alias list you wish to configure email forwarding.
                                      Show Properties
                                    • The mail exchange list you wish to configure email forwarding.
                                      Show Properties
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/email_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_HOSTING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_hosting command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The hosting type of the folder that you wish to set hosting.
                                      Supported valuesBASIC, ADVANCED
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/hosts
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • hosting_type: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_RENEW_OPTION Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_renew_option command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The renew option you wish to configure.
                                      Supported valuesRESET, AUTO, DONOT
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/renew_option
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • renew_option: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_CLEAR_SETTING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_clear_setting command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The service type you wish to clear the setting.
                                      Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/clear_setting
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • service_type: "String"
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    ORDER_GET_STATUS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the order_get_status command, the following parameters should be included:
                                    Request Parameters Expand All
                                      Result Parameters Expand All
                                      • The id of the order to be queried.
                                      • the status of the order.
                                      • order status list.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/orders/{order_id}
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • order_id: "Integer",
                                        • order_status: "String",
                                        • order_status_item_list: [
                                          1. {
                                            • item_type: "String",
                                            • item_domain: "String",
                                            • item_status: "String"
                                            }
                                          ]
                                        }
                                      }
                                      ORDER_GET_HISTORY Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the order_get_history command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • When the type of searchType is DOMAIN, you need to enter the correct domain name.
                                      • When the type of searchType is ORDER_ID, you need to enter the correct orderId.
                                      • You can choose a value from the following list to represent.
                                        Supported valuesDATE_RANGE, DOMAIN, ORDER_ID
                                      • When the search type is DATE_RANGE, you need to enter the correct order start timestamp, enter a 13-digit numberand the start and end timestamp lengths need to be consistent.
                                      • When the search type is DATE_RANGE, you need to enter the correct order start timestamp, enter a 13-digit numberand the start and end timestamp lengths need to be consistent.
                                      • When the type of searchType is DOMAIN, You can choose one or more payment types from the following list:PAYPAL, ACCOUNT_BALANCE, CREDIT_CARD. If not specified, all payment types will be selected by default.
                                      Result Parameters Expand All
                                      • The list of orders.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/orders
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • order_list: [
                                          1. {
                                            • order_id: "Integer",
                                            • submitted_time: "Long",
                                            • currency: "String",
                                            • payment_method: "String",
                                            • total_cost: "String",
                                            • total_paid: "String",
                                            • status: "String",
                                            • order_item: [
                                              1. {
                                                • type: "String",
                                                • name: "String",
                                                • duration: "Integer",
                                                • cost: "String",
                                                • status: "String"
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      }
                                      CANCEL_TRANSFER Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the cancel_transfer command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • your domain name.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/cancel_transfer
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      AUTHORIZE_TRANSFER_AWAY Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the authorize_transfer_away command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The domain name to authorize transfer away.
                                      • Whether to approve the transfer away.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/authorize_transfer_away
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String",
                                      • approve: false
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_TRANSFER_AUTH_CODE Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_transfer_auth_code command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • your domain name.
                                      • your transfer auth code.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/update_transfer_auth_code
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String",
                                      • auth_code: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      ADD_NEW_LEAD Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the add_new_lead command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The lead type you want to set the lead for. Acceptable values are "buy_now", "make_offer".
                                        Supported valuesBUY_NOW, MAKE_OFFER
                                      • The domain name you want to add lead for, only 1 domain can be entered per request.
                                      • The price you want to set the lead for.
                                      • The buyers' name.
                                      • The buyers' email.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarkets/leads
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • lead_type: "String",
                                      • domain_name: "String",
                                      • price: "String",
                                      • buyer_name: "String",
                                      • buyer_email: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_FOR_SALE Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_for_sale command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The type of sale you want to set for the domain(s).
                                        Supported valuesNOT_FOR_SALE, MARKETPLACE, AUCTION, PORTFOLIO_AUCTION
                                      • The currency you want to set the domain(s) for sale in.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      • The type of listing you want to set the domain(s) for sale as.
                                        Supported valuesBUY_NOW, MAKE_OFFER, BUY_NOW_AND_MAKE_OFFER
                                      • The price you want to set the domain(s) for sale at.
                                      • The minimum offer price you want to set the domain(s) for sale at.
                                      • The installment plan you want to set the domain(s) for sale with.
                                      • The maximum number of installments you want to set the domain(s) for sale with.
                                      • The category you want to set the domain(s) for sale in.
                                        Supported valuesADVERTISING, AUTOMOTIVE, BUSINESS, CARERRS_EDUCATION, CONSUMER_GOODS, ENTERTAINMENT, FASHION, FINANCE, GAMBLING, HEALTH, INTERNET, OTHER, PLACES, REAL_ESTATE, SCIENCE, SOCIETY, SPORTS, TECHNOLOGY, UNCATEGORIZED, ADULT, HOME, AI, AEROSPACE, AGENCY, AGRICULTURE_COMPANY, ANALYTICS, ALCOHOL, BABIES_KIDS, BIOTECH, CLEAN_ENERGY, CLEANING, COMMUNITY, CONSTRUCTION_ORGANIZATION, CRYPTOCURRENCY_BLOCKCHAIN, DATING_RELATIONSHIP, DAYCARE, DENTAL, DRONE, ECOMMERCE, FOOD_DRINK, FURNITURE, GAMES, INSURANCE, INTERIOR_DESIGN, LEGAL_LAW, MOTIVATIONAL, MANUFACTURING, MARKETING, MEDICAL, METAVERSE, MOVIES_TV, MUSIC_AUDIO, NEWS_MEDIA, NFT, OUTDOOR, PAYMENT, PETS, POLITICS, PROPERTY_MANAGEMENT, RECRUITMENT_STAFFING, SERVICES, SECURITY, SOCIAL, TRANSPORTATION, TRAVEL, VIDEO_BOOKS_MAGAZINES, VITUAL_REALITY, WEBSITE_DESIGN
                                      • The sub-category you want to set the domain(s) for sale in.
                                        Supported valuesMARKETING, RETAIL, SALES, CARS_TRUCKS, ENTHUSIASTS, MOTORSPORTS, INVESTMENT, LAW, MONEY, PROFESSIONS, SERVICES, APPAREL, ELECTRONICS, GAMES, POP_CULTURE, CASINO, SPORTS, FITNESS, MEDICINE, BLOGS, ECOMMERCE, DOMAINS, WEB_DESIGN, WEB_HOSTING, AFRICA, ASIA, EUROPE, NORTH_AMERICA, SOUTH_AMERICA, CULTURE, NEWS, POLITICS, RELIGION, LEISURE_ACTIVITIES, PROFESSIONAL, COMPUTERS
                                      • The description you want to set the domain(s) for sale with.
                                      • Whether you want to allow search engine indexing for the domain(s).
                                      Api Request and Header
                                      PUT https://api.dynadot.com/restful/v1/aftermarkets/domains/{domain_name}/for_sales
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • for_sale_type: "String",
                                      • currency: "String",
                                      • listing_type: "String",
                                      • price: "String",
                                      • minimum_offer_price: "String",
                                      • installment: "String",
                                      • maximum_installments: 0,
                                      • category: "String",
                                      • sub_category: "String",
                                      • description: "String",
                                      • allow_seo_index: false
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_OTHER_PLATFORM_CONFIRM_ACTION Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_other_platform_confirm_action command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The action to be performed.
                                        Supported valuesCONFIRM, DELETE
                                      • The type of the platform type.
                                        Supported valuesAFTERNIC, SEDO
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/domains/{domain_name}/opt_in_fast_transfer
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • action: "String",
                                      • platform_type: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      GET_LISTINGS Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the get_listings command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the search.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      • Exclude pending sale.
                                      • Show other registrar.
                                      Result Parameters Expand All
                                      • List of listings.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/listings
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • listing_item_list: [
                                          1. {
                                            • listing_id: "Integer",
                                            • domain: "String",
                                            • price: "String",
                                            • in_bound_links: "Integer",
                                            • age: "Integer",
                                            • is_pending_sale_locked: "String"
                                            }
                                          ]
                                        }
                                      }
                                      GET_LISTING_ITEM Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the get_listing_item command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the search.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Result Parameters Expand All
                                      • The listing item.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/listings/{domain_name}
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • listing_item: {
                                          • listing_id: "Integer",
                                          • domain: "String",
                                          • price: "String",
                                          • in_bound_links: "Integer",
                                          • age: "Integer",
                                          • is_pending_sale_locked: "String"
                                          }
                                        }
                                      }
                                      BUY_IT_NOW Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the buy_it_now command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the purchase.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/listings/{domain_name}/buy_it_now
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • currency: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      BUY_EXPIRED_CLOSEOUT_DOMAIN Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the buy_expired_closeout_domain command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the purchase.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/expired_closeouts/{domain_name}/purchase
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • currency: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      BACKORDER_REQUEST_LIST Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the backorder_request_list command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The start time of the backorder request, in milliseconds since epoch.
                                      • The end time of the backorder request, in milliseconds since epoch.
                                      Result Parameters Expand All
                                      • The list of backorder requests.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/backorders/requests
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {}
                                      }
                                      ADD_BACKORDER_REQUEST Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the add_backorder_request command, the following parameters should be included:
                                      Request Parameters Expand All
                                        Api Request and Header
                                        POST https://api.dynadot.com/restful/v1/aftermarket/backorders/requests/{domain_name}
                                        Content-Type: application/json
                                        Accept: application/json
                                        Authorization: Bearer API_KEY
                                        X-Signature: {signature}
                                        Request Body
                                        {}
                                        Response
                                        {
                                        • code: "Integer",
                                        • message: "String"
                                        }
                                        DELETE_BACKORDER_REQUEST Command
                                        Support multi-thread
                                        Support API Sandbox
                                        Require X-Signature
                                        If calling the delete_backorder_request command, the following parameters should be included:
                                        Request Parameters Expand All
                                          Api Request and Header
                                          DELETE https://api.dynadot.com/restful/v1/aftermarket/backorders/requests/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          X-Signature: {signature}
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String"
                                          }
                                          PLACE_AUCTION_BID Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the place_auction_bid command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency to use for the bid.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • The amount to bid.
                                          • Whether to backorder the domain.
                                          Result Parameters Expand All
                                          • The auction item details.
                                            Show Properties
                                          Api Request and Header
                                          POST https://api.dynadot.com/restful/v1/aftermarket/auctions/bids/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Request Body
                                          {
                                          • currency: "String",
                                          • bid_amount: 0,
                                          • is_backorder_auction: false
                                          }
                                          Response
                                          GET_AUCTION_BIDS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_auction_bids command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          Result Parameters Expand All
                                          • The list of auction bids.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/bids
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_bid_details: [
                                              1. {
                                                • bid_id: "Integer",
                                                • auction_id: "Integer",
                                                • account_id: "String",
                                                • domain: "String",
                                                • domain_utf: "String",
                                                • is_idn_domain: "String",
                                                • auction_type: "String",
                                                • current_bid: "String",
                                                • proxy_bid: "String",
                                                • bid_status: "String",
                                                • is_high_bidder: "String",
                                                • active_bidders: "Integer",
                                                • time_left: "String",
                                                • end_time: "String",
                                                • end_time_stamp: "Long"
                                                }
                                              ]
                                            }
                                          }
                                          GET_CLOSED_AUCTIONS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_closed_auctions command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • The timestamp indicating the start time of the search period.
                                          • The timestamp indicating the end time of the search period.
                                          Result Parameters Expand All
                                          • List of closed auctions.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/closed
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • ClosedAuctionList: [
                                              1. {
                                                • auction_id: "Integer",
                                                • domain: "String",
                                                • auction_status: "String",
                                                • bid_price: "String",
                                                • bids: "String",
                                                • end_time: "String",
                                                • end_timestamp: "Long",
                                                • auction_won_status: "String",
                                                • your_high_bid: "String",
                                                • your_proxy_bid: "String"
                                                }
                                              ]
                                            }
                                          }
                                          GET_OPEN_AUCTIONS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_open_auctions command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • Currency of the auction.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • Auction types to get.
                                          Result Parameters Expand All
                                          • List of auction details.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/open
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_detail_info_list: [
                                              1. {
                                                • auction_id: "Integer",
                                                • domain_name_utf: "String",
                                                • current_price: "String",
                                                • currency: "String",
                                                • bids: "Integer",
                                                • end_time_utc: "String",
                                                • end_time_stamp: "Integer",
                                                • revenue: "String",
                                                • revenue_currency: "String",
                                                • visitors: "Integer",
                                                • inbound_links: "Integer",
                                                • age: "Integer"
                                                }
                                              ]
                                            }
                                          }
                                          GET_AUCTION_DETAILS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_auction_details command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          Result Parameters Expand All
                                          • auction item detail.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_item_details: {
                                              • auction_id: "Integer",
                                              • domain_name: "String",
                                              • utf_name: "String",
                                              • is_idn: "String",
                                              • auction_type: "String",
                                              • current_bid_price: "String",
                                              • accepted_bid_price: "String",
                                              • currency: "String",
                                              • is_high_bidder: "String",
                                              • bids: "Integer",
                                              • bidders: "Integer",
                                              • auction_status_id: "Integer",
                                              • time_left: "String",
                                              • start_time: "String",
                                              • end_time: "String",
                                              • revenue: "String",
                                              • visitors: "Long",
                                              • links: "String",
                                              • age: "Integer",
                                              • estibot_appraisal: "String",
                                              • auction_ended: "String",
                                              • customer_bided: "String",
                                              • customer_bid: "String",
                                              • customer_proxy_bid: "String",
                                              • is_premium: "String",
                                              • renewal_price: "String",
                                              • revenue_currency: "String",
                                              • start_price: "String",
                                              • bid_history_item_list: [
                                                1. {
                                                  • bidder_name: "String",
                                                  • bid_price: "String",
                                                  • currency: "String",
                                                  • timestamp: "Long",
                                                  • bid_status: "String",
                                                  • is_proxy_auto_bid: "String"
                                                  }
                                                ],
                                              • auction_status_name: "String"
                                              }
                                            }
                                          }
                                          GET_WHOIS_STATS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_whois_stats command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The domain name to get whois stats for.
                                          • The date type to get whois stats for.
                                            Supported valuesLAST_7_DAYS, LAST_30_DAYS, CURRENT_YEAR, LAST_YEAR
                                          Result Parameters Expand All
                                          • The whois stats for the domain.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/whois_stats
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • stats: [
                                              1. {
                                                • date: "String",
                                                • count: "Long"
                                                }
                                              ]
                                            }
                                          }
                                          GET_EXPIRED_CLOSEOUT_DOMAINS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_expired_closeout_domains command, the following parameters should be included:
                                          Request Parameters Expand All
                                            Result Parameters Expand All
                                            • The list of closeout items.
                                              Show Properties
                                            Api Request and Header
                                            GET https://api.dynadot.com/restful/v1/aftermarket/get_expired_closeout_domain/{currency}/{page_num}/{page_size}
                                            Content-Type: application/json
                                            Accept: application/json
                                            Authorization: Bearer API_KEY
                                            Response
                                            {
                                            • code: "Integer",
                                            • message: "String",
                                            • data: {
                                              • closeout_item_list: [
                                                1. {
                                                  • domain_name: "String",
                                                  • domain_name_utf: "String",
                                                  • current_price: "String",
                                                  • is_idn: "String",
                                                  • end_time_stamp: "Long",
                                                  • renewal_price: "String",
                                                  • expired_revenue: "String",
                                                  • estibot_appraisal: "String",
                                                  • inbound_links: "Integer",
                                                  • monthly_visitors: "Integer",
                                                  • currency: "String",
                                                  • is_active: "String",
                                                  • auction_id: "Integer",
                                                  • closeout_id: "Integer",
                                                  • age: "Integer",
                                                  • current_price_usd: "Long",
                                                  • price_usd: "Long",
                                                  • seller_price: "Long",
                                                  • registrar_account_id: "String",
                                                  • order_status: "Integer"
                                                  }
                                                ]
                                              }
                                            }
                                            GET_SITE_BUILDER Command
                                            Support multi-thread
                                            Support API Sandbox
                                            Require X-Signature
                                            If calling the get_site_builder command, the following parameters should be included:
                                            Request Parameters Expand All
                                              Result Parameters Expand All
                                              • .
                                                Show Properties
                                              Api Request and Header
                                              GET https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}
                                              Content-Type: application/json
                                              Accept: application/json
                                              Authorization: Bearer API_KEY
                                              X-Signature: {signature}
                                              Response
                                              {
                                              • code: "Integer",
                                              • message: "String",
                                              • data: {
                                                • sitebuilder: {
                                                  • domain_name: "String",
                                                  • template: "String",
                                                  • plan: "String",
                                                  • isPublished: "String"
                                                  }
                                                }
                                              }
                                              LIST_SITE_BUILDER Command
                                              Support multi-thread
                                              Support API Sandbox
                                              Require X-Signature
                                              If calling the list_site_builder command, the following parameters should be included:
                                              Request Parameters Expand All
                                                Result Parameters Expand All
                                                • The list of sitebuilder.
                                                  Show Properties
                                                Api Request and Header
                                                GET https://api.dynadot.com/restful/v1/sitebuilders
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • sitebuilder_list: [
                                                    1. {
                                                      • domain_name: "String",
                                                      • template: "String",
                                                      • plan: "String",
                                                      • isPublished: "String"
                                                      }
                                                    ]
                                                  }
                                                }
                                                CREATE_SITE_BUILDER Command
                                                Support multi-thread
                                                Support API Sandbox
                                                Require X-Signature
                                                If calling the create_site_builder command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • Whether to set the domain's DNS to the site builder's DNS.
                                                Result Parameters Expand All
                                                • The domain name of the site builder.
                                                • The URL of the site builder.
                                                Api Request and Header
                                                POST https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Request Body
                                                {
                                                • set_domain_dns: false
                                                }
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • domain_name: "String",
                                                  • server_url: "String"
                                                  }
                                                }
                                                UPGRADE_SITE_BUILDER Command
                                                Support multi-thread
                                                Support API Sandbox
                                                Require X-Signature
                                                If calling the upgrade_site_builder command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • Whether to set the domain's DNS to the site builder's DNS.
                                                Result Parameters Expand All
                                                • The domain name of the site builder.
                                                • The URL of the site builder.
                                                Api Request and Header
                                                POST https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}/upgrade
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Request Body
                                                {
                                                • set_domain_dns: false
                                                }
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • domain_name: "String",
                                                  • server_url: "String"
                                                  }
                                                }
                                                LIST_COUPONS Command
                                                Support multi-thread
                                                Support API Sandbox
                                                If calling the list_coupons command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • The list of coupon types to get.
                                                  Supported valuesDOMAIN, RENEW, TRANSFER, RESTORE, PRIVACY, EMAIL_WEBHOST, VPS_WEBHOST, SSL, SITEBUILDER, SITEBUILDER_RENEW, EMAIL_WEBHOST_DOMAIN_BUNDLE, VPS_WEBHOST_DOMAIN_BUNDLE, SITEBUILDER_DOMAIN_BUNDLE, ORDER_LEVEL_DISCOUNT, DOMAIN_REGISTRATION_MATCH, DOMAIN_BUNDLE, DROP_CATCH, LOGO_BUILDER, RENEW_RESTORE
                                                Result Parameters Expand All
                                                • The list of coupons.
                                                  Show Properties
                                                Api Request and Header
                                                GET https://api.dynadot.com/restful/v1/orders/coupons
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • coupons: [
                                                    1. {
                                                      • code: "String",
                                                      • description: "String",
                                                      • coupon_type: "String",
                                                      • discount_type: "String",
                                                      • discount_info: {
                                                        • Percentage: "String"
                                                        },
                                                      • restriction: {
                                                        • price_levels: [
                                                          1. "String"
                                                          ],
                                                        • uses_per_account: "Integer",
                                                        • uses_system_wide: "Integer",
                                                        • uses_per_ip: "Integer",
                                                        • items_per_account: "Integer",
                                                        • items_system_wide: "Integer",
                                                        • items_per_order: "Integer",
                                                        • items_per_day: "Integer",
                                                        • domain_duration_min: "Integer",
                                                        • domain_duration_max: "Integer",
                                                        • idn_restriction: "String",
                                                        • tlds: [
                                                          1. "String"
                                                          ],
                                                        • currencies: [
                                                          1. "String"
                                                          ]
                                                        },
                                                      • start_date: "Long",
                                                      • end_date: "Long"
                                                      }
                                                    ]
                                                  }
                                                }
                                                Вы уверены, что хотите закрыть чат?Чат будет закрыт, и история чата будет очищена.
                                                продолжить выход
                                                или остаться в чате.
                                                Для просмотра этой сессии чата, пожалуйстакликнутьэто окно
                                                Chat Online
                                                Чат в Интернете0
                                                Privacy Notice
                                                Your use of this website is subject to our Terms of Use. We may process the following information about you: Google referral sources, page visits, country, IP address, domain searches and associated TLD rankings, single sign-on (Open ID), forum views, chats, account creation, order placement and form submissions. The purposes for this processing include: troubleshooting errors, abuse detection, targeted marketing, localizing data, site and usage statistics and communication with you. This is necessary for the proper provisioning of the services in this website. Your continued use of this website constitutes your implied consent for this processing.