Powerful online PDF tools to make your document workflows easy and secure.
Transforms a document into a fillable form and generates a shareable link for the form. See the documentation
Enables searching capabilities for documents by name. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdffiller: {
type: "app",
app: "pdffiller",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pdffiller.com/v2/users/me`,
headers: {
Authorization: `Bearer ${this.pdffiller.$auth.oauth_access_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})