import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdf_munk: {
type: "app",
app: "pdf_munk",
}
},
async run({steps, $}) {
const data = {
"url": `https://pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://pdfmunk.com/api/v1/generateImage`,
headers: {
"accept": `application/json`,
"client-api-key": `${this.pdf_munk.$auth.api_key}`,
"content-type": `application/json`,
},
data,
})
},
})
PDF Munk uses API keys for authentication. When you connect your PDF Munk account, Pipedream securely stores the keys so you can easily authenticate to PDF Munk APIs in both code and no-code steps.