with AirOps and PDF Charts?
Run a workflow of an app. See the sync documentation or async documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airops: {
type: "app",
app: "airops",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.airops.com/public_api/airops_apps/executions`,
headers: {
Authorization: `Bearer ${this.airops.$auth.workspace_api_key}`,
"accept": `application/json`,
},
})
},
})
The PDF Charts API allows users to create high-quality, customizable PDF documents featuring various chart types directly from data. This API is especially valuable in automated reporting systems, data visualization for analytics, and dynamically generated financial or operational reports. By integrating this API with Pipedream, you can automate the generation and distribution of these documents based on triggers from numerous other apps and data sources, streamlining processes like monthly sales reporting, customer analytics, or resource management.