with ChartHop and UpViral?
Emit new event when a new employee is added to the organization. See the documentation
Emit new event when a new group is added to the organization. See the documentation
Emit new event when a new job is added to the organization. See the documentation
Add a new contact in your particular campaign. See the documentation
Return people, job, group, and field data for a particular org that match a provided search string. See the documentation
Updates an existing employee's details. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
charthop: {
type: "app",
app: "charthop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.charthop.com/v1/user/me`,
headers: {
Authorization: `Bearer ${this.charthop.$auth.api_token}`,
},
})
},
})
UpViral is a platform designed to create and run referral campaigns with ease. With the UpViral API, you can automate the collection of lead data, manage contests, and track the performance of your campaigns directly within Pipedream. This allows for a seamless integration of viral marketing efforts into your existing business processes. By leveraging the API, you can trigger actions in other apps based on campaign results, synchronize lead data with CRM systems, and even automate the distribution of rewards to contest winners.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
upviral: {
type: "app",
app: "upviral",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.upviral.com/api/v1`,
params: {
uvapikey: `${this.upviral.$auth.api_key}`,
uvmethod: `lists`,
},
})
},
})