Actions22
- Video Actions
- Avatar Actions
- Voice Actions
- Template Actions
- Product Actions
- AI Script Actions
- File Actions
- Visual Style Actions
- Webhook Actions
Overview
This node interacts with the JoggAI API to manage AI-generated content, including videos, avatars, voices, templates, and more. Specifically, for the Avatar resource and the Check Photo Avatar Generation Status operation, it allows users to check the current status of an avatar photo generation task by providing the unique ID of that task. This is useful in workflows where you need to monitor the progress or completion of avatar creation before proceeding with subsequent steps.
Practical example:
You might use this node to poll the status of an avatar generation request submitted earlier, waiting until the avatar is ready before downloading it or using it in a video or presentation.
Properties
| Name | Meaning |
|---|---|
| Avatar ID | The ID of the avatar generation task to check. Example format: a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6 |
Output
The node outputs JSON data representing the status of the avatar photo generation task associated with the provided Avatar ID. This typically includes fields such as the current state (e.g., pending, processing, completed, failed), timestamps, and possibly URLs or identifiers for the generated avatar once ready.
If the node supports binary data output (not explicitly shown here), it would likely be used to provide the actual avatar image or related media once generation is complete.
Dependencies
- Requires an active connection to the JoggAI API via an API key credential configured in n8n.
- Network access to the JoggAI service endpoint.
- Proper configuration of the node’s credentials to authenticate requests.
Troubleshooting
Common issues:
- Invalid or expired Avatar ID: Ensure the ID corresponds to a valid and existing avatar generation task.
- Authentication errors: Verify that the API key credential is correctly set up and has necessary permissions.
- Network or API downtime: Check connectivity and JoggAI service status.
Error messages:
"request failed: <error message>": Indicates a failure during the API call. Review the error message for specifics such as invalid parameters or authentication failures.- If the node is set to continue on fail, errors will be returned as part of the output JSON with an
errorfield describing the issue.
Links and References
- JoggAI Documentation (generic placeholder link based on the node’s documentation URL constant)
- n8n Documentation on Creating Custom Nodes