Yoplanning automates your processes and helps you streamline your activity thanks to powerful decision-making algorithms based on artificial intelligence.
Triggers when a new client is created. See the documentation
YoPlanning API offers tools for event planning, with features such as creating and managing event schedules, attendee lists, and budgets. Leveraging this API in Pipedream enables automating event-related workflows, syncing event data with other services, and triggering actions based on event updates or attendee responses. It's a powerful way to streamline event management tasks, ensuring that nothing slips through the cracks as you orchestrate everything from small meetings to large conferences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yoplanning: {
type: "app",
app: "yoplanning",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://yoplanning.pro/api/v3.1/teams`,
headers: {
"Authorization": `Token ${this.yoplanning.$auth.api_key}`,
},
})
},
})
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
},
})