Actions22
- Runway Actions
- Minimax Actions
- Midjourney Actions
Overview
This node integrates with the Minimax API via the UseAPI platform, allowing users to manage their Minimax account and related resources programmatically within n8n workflows. Specifically, the Create/Update Account operation registers or updates a Minimax account using credentials stored in n8n.
Typical use cases include:
- Automating the initial setup or update of a Minimax account as part of a larger workflow.
- Ensuring that account details are synchronized before performing other Minimax-related operations like video creation or file uploads.
- Streamlining onboarding processes where Minimax account registration is required.
Example: Before generating videos or uploading files to Minimax, you can run this node to confirm your account is registered and up-to-date, preventing errors from missing or outdated account information.
Properties
| Name | Meaning |
|---|---|
| Account Details | Informational notice explaining that this operation will register or update your Minimax account using saved credentials. |
| Confirm Registration | Boolean checkbox to confirm that you want to proceed with registering or updating your Minimax account. Must be checked to execute. |
Output
The node outputs JSON data representing the response from the Minimax API after attempting to create or update the account. This typically includes confirmation details about the account registration status, such as success messages or error information if the operation failed.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for Minimax configured in n8n credentials.
- The Minimax account name and API token must be set in the credentials.
- The node makes HTTP POST requests to the UseAPI endpoint
https://api.useapi.net/v1/minimax/accounts/{accountName}. - Proper network access to the UseAPI service is necessary.
Troubleshooting
Operation cancelled: Please confirm the registration by checking the confirmation checkbox.
This error occurs if the "Confirm Registration" property is not enabled. To resolve, ensure you check the confirmation box to explicitly allow account registration or update.Missing required credential fields: Please ensure "Account Name" and "Minimax API Token" are set in your credentials.
Indicates that essential credential fields are empty or missing. Verify that your Minimax credentials in n8n include both the account name and API token.HTTP request failures or API errors
Network issues, invalid tokens, or incorrect account names can cause API call failures. Check your credentials, internet connectivity, and Minimax service status.
Links and References
- Minimax API Documentation (replace with actual URL if available)
- UseAPI Platform
- n8n Documentation on Credentials
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)