with Gloria AI and Adobe Acrobat Sign?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gloria_ai: {
type: "app",
app: "gloria_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.iamgloria.com/api/v1/contact`,
headers: {
Authorization: `Bearer ${this.gloria_ai.$auth.api_key}`,
"tenant-id": `${this.gloria_ai.$auth.tenant_id}`,
},
data,
})
},
})
The Adobe Acrobat Sign API lets you embed e-signature processes into your custom applications, automate document workflows, and manage e-signatures. Specifically within Pipedream, you can harness this API to build serverless workflows that automate document signing requests, track status changes, and manage signed documents without ever leaving the platform. You can create workflows that trigger on various events, send out documents to be signed, and handle the responses—all programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adobe_sign: {
type: "app",
app: "adobe_sign",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.adobe_sign.$auth.api_access_point}api/rest/v6/users/me`,
headers: {
Authorization: `Bearer ${this.adobe_sign.$auth.oauth_access_token}`,
},
})
},
})