Corsizio was built to facilitate online registrations, payments, and feedback for any live teaching event, like in-person or online classes, courses, workshops, camps, lessons, or any similar events.
Go to siteCorsizio is a platform for event registration, payment processing, and attendee management. With the Corsizio API, you can automate your event management workflows on Pipedream, such as synchronizing attendee data with a CRM, sending custom emails based on event registration status, or processing payments and refunding attendees. By utilizing Pipedream's serverless platform, you can create intricate automations that respond to various Corsizio events, handle data transformation, and interact with countless other APIs for a seamless integration experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
corsizio: {
type: "app",
app: "corsizio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.corsizio.com/v1/account`,
headers: {
Authorization: `Bearer ${this.corsizio.$auth.api_secret_key}`,
},
})
},
})
Automated Attendee Follow-up: After an attendee registers for an event on Corsizio, trigger a Pipedream workflow to send a personalized welcome email via SendGrid. If the attendee doesn't complete payment within a certain timeframe, follow up with a reminder email or SMS via Twilio.
CRM Synchronization: Keep your CRM up-to-date by creating a Pipedream workflow that triggers whenever a new registration occurs on Corsizio. Use this trigger to add or update the attendee's information in Salesforce, ensuring your sales team has the latest data without manual entry.
Feedback Collection Post-Event: After an event concludes, automate the process of gathering feedback. Use a Pipedream workflow to send a survey link from Typeform to all attendees. Collect responses and aggregate the data in Google Sheets for easy analysis and future event improvement.
Corsizio uses API keys for authentication. When you connect your Corsizio account, Pipedream securely stores the keys so you can easily authenticate to Corsizio APIs in both code and no-code steps.
For connecting to Corsizio, you must enable the API integration from inside your Account Integration Settings. Once you do so, you will be able to copy and store the API Secret Access Key to use on all API requests as outlined below within the API Endpoint & authentication documentation page.