A Woovi is a complete platform that helps businesses increase their sales and customer loyalty, offering various functions, such as Pix, Cashback, Pix Parcelado and other solutions.
Emit new event when a webhook is called. See the documentation
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Opens a refund request for a specific charge. See the documentation
The Woovi API provides capabilities to interact with Woovi's video streaming services. In Pipedream, you can leverage this API to automate workflows related to video content management, distribution, and analytics. Custom integrations can help you streamline operations, such as automating video uploads, syncing metadata, or triggering actions based on viewer data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woovi: {
type: "app",
app: "woovi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openpix.com.br/api/v1/account/`,
headers: {
"Authorization": `${this.woovi.$auth.app_id}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})