with Logo.dev and Highrise?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
logo_dev: {
type: "app",
app: "logo_dev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.logo.dev/search`,
headers: {
Authorization: `Bearer ${this.logo_dev.$auth.secret_key}`,
},
params: {
"q": `Funko`,
},
})
},
})
The Highrise API offers a programmatic way to interact with your Highrise CRM data, enabling automated workflows that can save time and improve data consistency. With Pipedream, you can build serverless workflows that trigger on new contact additions, updates to existing contacts, or specific actions like emails received or tasks completed in Highrise. Utilizing Pipedream's ability to integrate with a multitude of other services, you can seamlessly connect Highrise to your broader business processes, such as marketing campaigns, support ticketing systems, or project management tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
highrise: {
type: "app",
app: "highrise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.highrise.$auth.subdomain}.highrisehq.com/people/1.xml`,
auth: {
username: `${this.highrise.$auth.token}`,
password: ``,
},
})
},
})