easyDNS

Go to site
Explore
/
Apps
/
easyDNS

easyDNS API Integrations

Build and run workflows using the easyDNS API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The easyDNS API can be used to perform a variety of tasks, including:

  • Registering new domains
  • Transferring domains
  • Updating DNS records
  • Renewing domains
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    easydns: {
      type: "app",
      app: "easydns",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://rest.easydns.net/user`,
      headers: {
        "Accept": `application/json`,
      },
      auth: {
        username: `${this.easydns.$auth.Token}`,
        password: `${this.easydns.$auth.Key}`,
      },
    })
  },
})

Authentication

easyDNS uses API keys for authentication. When you connect your easyDNS account, Pipedream securely stores the keys so you can easily authenticate to easyDNS APIs in both code and no-code steps.