with Survicate and FlexiSign?
Sends a signature request to the specified recipients for a document generated from a template. See the documentation
The Survicate API empowers you to seamlessly integrate survey data into your systems, automate actions based on feedback, and sync responses across your tech stack. With Pipedream, you can create serverless workflows that leverage this API to respond in real-time to survey submissions, aggregate data for analysis, or trigger personalized marketing campaigns. Pipedream's no-code platform simplifies the process of connecting Survicate with other apps like Slack, Google Sheets, or CRMs such as Salesforce, to streamline data flows and enhance customer insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
survicate: {
type: "app",
app: "survicate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://data-api.survicate.com/v1/surveys`,
headers: {
"Authorization": `Basic ${this.survicate.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexisign: {
type: "app",
app: "flexisign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexisign.io/v1/templates/all`,
headers: {
"api-key": `${this.flexisign.$auth.api_key}`,
},
})
},
})