Visualize any data and integrate the visuals into the apps you use every day with Power BI, a unified platform for self-service and business intelligence.
Emits a new event when a dataset refresh operation has completed. See the documentation
Emits an event when a dataset refresh operation has failed in Power BI. See the documentation
Emit new event when a new dataset refresh operation is created. See the documentation
Adds new data rows to the specified table within the specified dataset from My workspace. See the documentation
Automatically adjusts the color and lighting of an image by applying HDR. The result is an enhancement of the dynamic range in dark or overexposed images. See the documentation
Cancels a refresh operation for a specified dataset in Power BI. See the documentation
Easily erases the image's background, effectively isolating the main subject. See the documentation
Creates a new Push Dataset in Power BI. See the documentation
The Microsoft Power BI API allows you to interact with your Power BI assets programmatically. With this API, you can embed your reports and dashboards into applications, manage Power BI datasets, push data into datasets for real-time dashboard updates, and automate your reporting workflows. On Pipedream, you can use this API to create intricate workflows that react to various triggers, like webhooks or schedules, and perform actions like refreshing datasets, posting to datasets, and managing Power BI assets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_power_bi: {
type: "app",
app: "microsoft_power_bi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.powerbi.com/v1.0/myorg/availableFeatures`,
headers: {
Authorization: `Bearer ${this.microsoft_power_bi.$auth.oauth_access_token}`,
},
})
},
})
Claid AI API provides tools for image enhancement, including resizing, cropping, increasing resolution, and optimizing for web use. It's suitable for automating image processing tasks in applications like e-commerce, real estate, and content management. On Pipedream, you can create serverless workflows that use the Claid AI API to process images in response to various triggers, such as new file uploads or webhooks, and then pass the processed images to other services or store them.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
claid_ai: {
type: "app",
app: "claid_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.claid.ai/v1-beta1/storage/storages`,
headers: {
Authorization: `Bearer ${this.claid_ai.$auth.api_key}`,
},
})
},
})