AActionAcadleUpdated September 2026
How do I enroll a new student in an Acadle course?
Short answer: You can enroll student in course in Acadle by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Acadle Enroll Student in Course 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.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Course ID course_id | string | Required | The Course ID assigned by Acadle. Find via the corresponding list/search operation in this app. Use the exact ID, not a name or label. |
Email email | string | Required | The email address. Used as the recipient or identifier depending on context. |
Name name | string | Optional | Used when creating the account if user doesn't exist. |
Sample request
{"course_id": "{{trigger.course_id}}","email": "learner@example.com","name": "{{trigger.name}}"}
Returns
{"status": "enrolled","user_id": "usr_xyz","course_id": "course_abc","enrollment_id": "enr_abc"}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for Enroll Student in Course.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about Enroll Student in Course.
What does the Enroll Student in Course action do in Acadle?
Grants a student access to a specific course in your Acadle academy. Acadle dedupes on email — existing students get the new enrollment added; new emails get an account created and the welcome email sent. The standard hook for "Stripe checkout completed → auto-enroll in the product training" patterns.
What inputs does Enroll Student in Course require?
Required: Course ID, Email. 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 Acadle returns an error?
The run history shows the failed step with its input and the error message Acadle 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 in Course support batch operations?
Run Enroll Student in Course 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 Acadle's rate limits.
More actions