with Public Record and Dub?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
public_record: {
type: "app",
app: "public_record",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.propmix.io/pubrec/assessor/v1/GetPropertyDetails`,
headers: {
"Access-Token": `${this.public_record.$auth.api_key}`,
},
params: {
StreetAddress: `305 E 2nd St`,
City: `Lucas`,
State: `KS`,
PostalCode: `67648`,
OrderId: `5411013`,
},
})
},
})
The Dub API lets you automate the creation and management of personalized video messages. Pipedream’s platform simplifies the process of setting up triggers and actions to interact with the Dub API. You can automate video generation, distribution, and track engagement with ease. Customize your workflow to sync with CRMs, communication platforms, or data analysis tools for a powerful, streamlined video outreach process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dub: {
type: "app",
app: "dub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dub.co/me`,
headers: {
Authorization: `Bearer ${this.dub.$auth.api_key}`,
},
})
},
})