Actions33
- Public Actions
- Public Admin Actions
- Reseller Actions
- Create New Team
- Get Team Information
- Update Team
- Remove Team From Reseller
- Update Team Avatar
- Create Team Bulk Inboxes And Users
- Get Team Users
- Add User To Team
- Remove Users From Team
- Get Team Inboxes
- Remove Team Inboxes
- Create Team Bulk Inboxes
- Assign Users To Inbox
- Remove Users From Inbox
- Get Team Whitelist Domains
- Create Team Whitelisted Domain
- Remove Team Whitelisted Domain
- Create Reseller
- Import Team Users
- Get Import Team Users Job Status
Overview
This node operation retrieves the status of a user import job for a specific team within a reseller context. It is useful when you need to monitor or check the progress and result of importing users into a team, such as after initiating a bulk user import process. For example, after uploading a CSV file with new team members, this operation can be used to verify if the import completed successfully or if there were any errors.
Properties
Name | Meaning |
---|---|
Team Id | The unique identifier of the team whose import job status you want to retrieve. |
Job Id | The unique identifier of the import job to check its status. |
Output
The output JSON will contain details about the import job status for the specified team and job ID. This typically includes information such as whether the job is still running, completed successfully, or failed, along with any relevant metadata or error messages related to the import process.
If the node supports binary data output (not evident from the provided code), it would represent any files or attachments related to the import job status, but no such indication is present here.
Dependencies
- Requires an API key credential for authentication to the external service managing the reseller and team user imports.
- The node uses a base URL configured via credentials to connect to the appropriate API endpoint.
- Depends on the
@avantguardllc/n8n-openapi-node
package and an OpenAPI specification (openapi.json
) to build request properties dynamically.
Troubleshooting
- Missing or invalid Team Id or Job Id: Ensure both IDs are correctly provided and correspond to existing entities in the system.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API errors: Check connectivity to the API endpoint and confirm the service is operational.
- Unexpected response format: If the API changes, the node might fail to parse the response; updating the OpenAPI spec or node version may be necessary.
Links and References
- No direct links available from the source code.
- Refer to the external API documentation of the reseller service for detailed information on import job statuses.
- n8n documentation on creating custom nodes and using API credentials.