with Salesloft and Stiply?
Emit new event when a sign request is completed in Stiply. See the documentation
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
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`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stiply: {
type: "app",
app: "stiply",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.stiply.nl/v2/sign_requests`,
headers: {
Authorization: `Bearer ${this.stiply.$auth.oauth_access_token}`,
"accept": `application/json`,
},
params: {
"$page": `1`,
"$page_size": `100`,
},
})
},
})