ActionEzyCourseUpdated September 2026

How do I enroll a student in an EzyCourse course?

Short answer: You can enroll student in EzyCourse by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the EzyCourse Enroll Student action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Enroll Student in EzyCourse — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Student Email
email
emailRequiredEmail of the student to enroll
Course ID
course_id
stringRequiredThe course ID to enroll the student in
Full Name
full_name
stringOptionalStudent's full name (required if new student)
Sample request
{
"email": "e.g. user@example.com",
"course_id": "e.g. 1001",
"full_name": "{{trigger.full_name}}"
}
Returns
{
"message": "Student enrolled successfully",
"success": true,
"enrollment": {
"course_id": 1001,
"student_id": 5001,
"enrolled_at": "2025-03-15T12:00:00Z"
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Enroll Student.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Enroll Student.

What does the Enroll Student action do in EzyCourse?
Grants a student access to a course in your EzyCourse academy. The standard hook for "checkout completed → auto-enroll" e-commerce-to-academy workflows.
What inputs does Enroll Student require?
Required: Student Email, Course ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if EzyCourse returns an error?
The run history shows the failed step with its input and the error message EzyCourse returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Enroll Student support batch operations?
Run Enroll Student inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within EzyCourse's rate limits.
More actions

Other EzyCourse actions.

Enroll Student in EzyCourse — start free