with Exact Mails and Sellsy?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
exact_mails: {
type: "app",
app: "exact_mails",
}
},
async run({steps, $}) {
const data = {
"linkedin_url": `https://www.linkedin.com/in/janesmith/`,
}
return await axios($, {
method: "post",
url: `https://api.exactmails.com/api/v1/email/find-linkedin-email`,
auth: {
username: `${this.exact_mails.$auth.username}`,
password: `${this.exact_mails.$auth.api_key}`,
},
data,
})
},
})
The Sellsy API allows you to automate and enhance your customer relationship management and sales processes. Via Pipedream, a serverless integration and automation platform, you can leverage the API to sync data, trigger workflows based on specific actions within Sellsy, and connect Sellsy with a multitude of other services to streamline operations, enhance user engagements, and optimize sales activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sellsy: {
type: "app",
app: "sellsy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sellsy.com/v2/teams`,
headers: {
Authorization: `Bearer ${this.sellsy.$auth.oauth_access_token}`,
},
})
},
})