with Screenshot API and Solve CRM?
Emit new event for each new company created. See the docs here
Emit new event for each new contact created. See the docs here
Emit new event when the specified tag is added to a contact. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshot_api: {
type: "app",
app: "screenshot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://shot.screenshotapi.net/v3/screenshot`,
params: {
token: `${this.screenshot_api.$auth.api_key}`,
url: `https://google.com`,
output: `JSON`,
},
})
},
})
The Solve CRM API offers a variety of endpoints to manage customer relationships and sales processes programmatically. It enables users to create, read, update, and delete customer data, manage projects, track email communication, and automate workflows involving contacts and companies. Pipedream harnesses this power, allowing you to connect Solve CRM with a myriad of other apps and services to streamline sales pipelines, enhance customer engagement, and automate routine tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
solve_crm: {
type: "app",
app: "solve_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://secure.solve360.com/contacts`,
auth: {
username: `${this.solve_crm.$auth.email}`,
password: `${this.solve_crm.$auth.api_token}`,
},
})
},
})