with goQR.me and MergeMole?
Generate a PDF document based on the specified template. See the documentation
Get all data variables of a specified template. See the documentation
Retrieve a list of all templates under your account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goqr_me: {
type: "app",
app: "goqr_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qrserver.com/v1/create-qr-code/`,
params: {
data: `${this.goqr_me.$auth.data}`,
size: `100x100`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mergemole: {
type: "app",
app: "mergemole",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mergemole.com/api/test`,
headers: {
"x-api-token": `${this.mergemole.$auth.api_key}`,
"x-api-secret": `${this.mergemole.$auth.secret_key}`,
},
})
},
})