with Notiff (OAuth) and GoDaddy?
Send a new notification to a user or system via notiff.io. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notiff_io: {
type: "app",
app: "notiff_io",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://notiff.io/api/1.1/wf/me`,
headers: {
Authorization: `Bearer ${this.notiff_io.$auth.oauth_access_token}`,
},
})
},
})
The GoDaddy API provides programmatic access to manage aspects of your GoDaddy domain and hosting services. Through Pipedream, you can automate domain availability checks, renewals, and DNS record management. This enables seamless integration of domain-related operations within your automated workflows, such as dynamically updating DNS records or triggering actions based on domain registration events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
godaddy: {
type: "app",
app: "godaddy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.godaddy.com/v1/domains/available`,
headers: {
"Authorization": `sso-key ${this.godaddy.$auth.api_key}:${this.godaddy.$auth.api_secret}`,
},
params: {
domain: `example.guru`,
},
})
},
})