with Form.io and Unstructured?
The Form.io API empowers developers to manage forms and submissions on Pipedream, enabling the automation of workflows that require data collection and processing. With Form.io on Pipedream, you can create, update, and fetch forms, as well as handle form submissions. This is ideal for tasks like dynamically generating forms based on user input, streamlining data collection processes, and integrating form data with other services for further analysis or action.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
form_io: {
type: "app",
app: "form_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.form_io.$auth.project_id}.form.io/${this.form_io.$auth.form_name}`,
headers: {
"x-token": `${this.form_io.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
import FormData from "form-data";
import request from "request";
export default defineComponent({
props: {
unstructured: {
type: "app",
app: "unstructured",
},
},
async run({ steps, $ }) {
const data = new FormData();
data.append("files", request("https://www.learningcontainer.com/wp-content/uploads/2019/09/sample-pdf-file.pdf"));
return await axios($,{
method: "POST",
url: `${this.unstructured.$auth.url}/general/v0/general`,
headers: {
"Content-Type": `multipart/form-data`,
"unstructured-api-key": `${this.unstructured.$auth.api_key}`
},
data
});
},
})