Customer relationship magic. Powerful, flexible and data-driven, Attio makes it easy to build the exact CRM your business needs.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a list entry is deleted (i.e. when a record is removed from a list).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Creates a new note for a given record. The note will be linked to the specified record. See the documentation
Creates or updates a specific record such as a person or a deal. If the record already exists, it's updated. Otherwise, a new record is created. See the documentation
Deletes an existing entry from a specific list. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attio: {
type: "app",
app: "attio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attio.com/v2/self`,
headers: {
Authorization: `Bearer ${this.attio.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.