with Snapdocs and Syntage?
The Snapdocs API enables seamless integration with its real estate closing platform, allowing users to automate document handling, notifications, and scheduling within the real estate closing process. By leveraging the Snapdocs API on Pipedream, you can craft custom workflows that streamline communication between agents, clients, and other stakeholders, orchestrate document management, and sync data across various platforms involved in the transaction process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
snapdocs: {
type: "app",
app: "snapdocs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.snapdocs.$auth.environment}.snapdocs.com/mobile_notary_api/v1/clients`,
headers: {
"X-AUTH-TOKEN": `${this.snapdocs.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
satws: {
type: "app",
app: "satws",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.syntage.com/credentials`,
headers: {
"x-api-key": `${this.satws.$auth.api_key}`,
"accept": `application/ld+json`,
},
})
},
})