with Papersign and LMNT?
Generates a custom voice from a batch of input audio data. See the documentation
Generates an audio file from the provided text. See the documentation
Dispatches a document to a specified recipient. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
papersign: {
type: "app",
app: "papersign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.paperform.co/v1/papersign/documents`,
headers: {
Authorization: `Bearer ${this.papersign.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lmnt: {
type: "app",
app: "lmnt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lmnt.com/v1/account`,
headers: {
"X-API-Key": `${this.lmnt.$auth.api_key}`,
},
})
},
})