with NeetoForm and Orshot?
Generate an image from a pre-designed library template using the Orshot API. See the documentation
Generate an image from an Orshot Studio template using the Orshot API. See the documentation
Get available modification keys for a studio template
Get available modification keys for a library template
Retrieve a list of available library templates from Orshot. See templates
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetoform: {
type: "app",
app: "neetoform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetoform.$auth.subdomain}.neetoform.com/api/external/v1/forms`,
headers: {
"x-api-key": `${this.neetoform.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
orshot: {
type: "app",
app: "orshot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.orshot.com/v1/templates`,
headers: {
Authorization: `Bearer ${this.orshot.$auth.token}`,
"content-type": `application/json`,
},
})
},
})