import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesloft: {
type: "app",
app: "salesloft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salesloft.com/v2/me`,
headers: {
Authorization: `Bearer ${this.salesloft.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Emit new event when a cadence is updated in Salesloft. See the documentation
Emit new event when an email is updated in Salesloft. See the documentation
Emit new event when a person is created in Salesloft. See the documentation
Adds a person to a cadence in Salesloft. See the documentation
Salesloft uses API keys for authentication. When you connect your Salesloft account, Pipedream securely stores the keys so you can easily authenticate to Salesloft APIs in both code and no-code steps.