Leading European provider of digital signature, digital transaction management and trust services.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Initiates the creation of a certified email. See the documentation
Adds a contact to a specific static list. See the documentation
Creates a signature request using a pre-existing template. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
The Signaturit API enables automated document signing, tracking, and management directly within Pipedream. By integrating this API, users can create workflows to send documents for signature, check the status of sent documents, and receive updates when documents are signed or declined, all from a serverless platform. By leveraging Pipedream's capacity for integrating various APIs and services, users can seamlessly include e-signature capabilities into their business processes without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signaturit: {
type: "app",
app: "signaturit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.signaturit.$auth.domain}.signaturit.com/v3/team/users.json`,
headers: {
Authorization: `Bearer ${this.signaturit.$auth.access_token}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})