with Are.na and Act! 365?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
are_na: {
type: "app",
app: "are_na",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.are.na/v2/search/users`,
headers: {
Authorization: `Bearer ${this.are_na.$auth.oauth_access_token}`,
},
params: {
"q": `John Smith`,
},
})
},
})
The Act! 365 API is a potent tool for managing customer relationships by interacting programmatically with the Act! 365 CRM platform. With Pipedream, you can harness this API to automate interactions with customer data, streamline sales processes, and enhance customer engagement through personalized communications. The API allows you to create, retrieve, update, and delete records such as contacts, companies, opportunities, and activities, paving the way for a vast array of automated workflows that connect Act! 365 with other apps and services to fuel business growth, save time, and reduce manual toil.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
act_365: {
type: "app",
app: "act_365",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.act365.com/act/api/contacts`,
auth: {
username: `${this.act_365.$auth.api_key}`,
password: `${this.act_365.$auth.developer_key}`,
},
})
},
})