with signNow and PersanaAI?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
Creates a new document copy out of a template. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
Creates and sends a field invite to sign a document. See the documentation
Uploads a file that contains SignNow text tags. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
persanaai: {
type: "app",
app: "persanaai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api2.persana.ai/api/v1/rapid-api/company/profile`,
headers: {
"x-api-key": `${this.persanaai.$auth.api_key}`,
},
params: {
domain: `google.com`,
},
})
},
})