with Docker Engine and pdfFiller?
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: {
docker_engine: {
type: "app",
app: "docker_engine",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.docker_engine.$auth.url}/v1.45/containers/json`,
headers: {
"X-Registry-Auth": `${this.docker_engine.$auth.registry_authorization}`,
},
})
},
})
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}`,
},
})
},
})