with DNSFilter and Printful?
Emit new event when a new policy is created. See the documentation
Emit new event when a new order is created in your Printful account.
Emit new event when a user's DNS query is blocked by a policy. See the documentation
Emit new event when a new product is added to your Printful store catalog.
Emit new event when the status of an existing Printful order is updated.
Assigns a pre-existing policy to a specific site within your DNSFilter account. See the documentation
Fetches available shipping rates for a given destination. See the documentation
Blocks a selected category from a policy applied to your DNSFilter account's sites or roaming clients. See the documentation
Creates a new order in your Printful account. See the documentaion
Updates an existing product in your Printful store. See the documentation
The DNSFilter API enables you to automate interactions with your DNSFilter account, offering capabilities like managing filtered domains, accessing reports, updating settings, and more. Within Pipedream, you can wield this API for seamless and serverless integrations, crafting workflows that trigger on specified conditions, process DNSFilter data, and interact with other apps and services, all without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dnsfilter: {
type: "app",
app: "dnsfilter",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dnsfilter.com/v1/users`,
headers: {
"Authorization": `Token ${this.dnsfilter.$auth.oauth_access_token}`,
},
})
},
})
The Printful API unlocks the ability to automate custom print-on-demand operations within Pipedream's serverless platform. With this API, you can streamline the process of managing products, submitting orders, and syncing inventory. Building workflows around the Printful API on Pipedream can significantly reduce manual intervention, connect your e-commerce data with other services, and enhance customer experiences through timely fulfillment and updates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
printful: {
type: "app",
app: "printful",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.printful.com/products`,
headers: {
Authorization: `Bearer ${this.printful.$auth.api_key}`,
},
})
},
})