with SignRequest and Sinch?
Emit new event when a new fax is received. See the documentation
Emit new event when a new message is received. See the documentation
With the SignRequest API on Pipedream, you can automate sending documents for signatures, monitor the status of sent documents, and streamline the e-signature process within your own applications or workflows. This facilitates swift and secure digital signatures, allowing you to integrate SignRequest with other services for enhanced document management and notification systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signrequest: {
type: "app",
app: "signrequest",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://signrequest.com/api/v1/team-members/`,
headers: {
Authorization: `Bearer ${this.signrequest.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sinch: {
type: "app",
app: "sinch",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.sinch.$auth.region}.conversation.api.sinch.com/v1/projects/${this.sinch.$auth.project_id}/contacts`,
headers: {
Authorization: `Bearer ${this.sinch.$auth.oauth_access_token}`,
},
})
},
})