The #1 Open-Source CRM. Modern, powerful, affordable platform to manage your customer relationships.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twenty: {
type: "app",
app: "twenty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twenty.com/rest/people`,
headers: {
Authorization: `Bearer ${this.twenty.$auth.api_key}`,
},
})
},
})
Emit new event when a record is created, updated, or deleted.
Create, update, or delete a single record in Twenty. This action allows for dynamic handling of records based on specified action type. See the documentation
Twenty uses API keys for authentication. When you connect your Twenty account, Pipedream securely stores the keys so you can easily authenticate to Twenty APIs in both code and no-code steps.