Overview
The Toolzz Show Lesson node retrieves detailed information about a specific lesson from the Toolzz API, given its lesson ID. It is useful in scenarios where you need to fetch lesson data for further processing, reporting, or integration with other systems within an n8n workflow. For example, you might use this node to automatically pull lesson details into a learning management dashboard or to trigger notifications based on lesson content.
Properties
| Name | Type | Meaning |
|---|---|---|
| AccessToken | String | The access token used for authenticating requests to the Toolzz API. |
| Ambiente | Options | Selects the environment (Prod, Homol, Release) to which the API request will be sent. |
| ID Da Aula | String | The unique identifier of the lesson to retrieve from the Toolzz API. |
Output
The node outputs a JSON object containing the lesson details as returned by the Toolzz API. The exact structure depends on the API response, but typically includes fields such as lesson title, description, content, and metadata.
Example output:
{
"id": "12345",
"title": "Sample Lesson",
"description": "Lesson description here",
// ...other lesson fields
}
- No binary data is produced; only structured JSON is returned.
Dependencies
- External Service: Requires access to the Toolzz API.
- API Key: A valid AccessToken must be provided.
- Network: The selected environment (Ambiente) must be reachable from the n8n instance.
Troubleshooting
- Invalid AccessToken: If the access token is missing or invalid, the API will likely return an authentication error (e.g., 401 Unauthorized). Ensure the token is correct and has not expired.
- Incorrect Environment: Selecting the wrong environment may result in connection errors or unexpected data. Double-check the Ambiente selection.
- Missing Lesson ID: If the ID Da Aula field is empty or incorrect, the API may return a 404 Not Found error. Verify that the lesson ID exists in the chosen environment.
- Network Issues: If the n8n instance cannot reach the specified URL, check firewall settings and network connectivity.
Links and References
- Toolzz API Documentation (if available)
- n8n Documentation: HTTP Request Helper