Actions28
- Action Actions
- Country Actions
- Event Actions
- Language Actions
- Product Actions
- Profile Actions
- Task Actions
- Timezone Actions
- User Management Actions
- kSuite Actions
Overview
This node interacts with the Infomaniak API to manage asynchronous tasks. Specifically, the "Task" resource with the "Get" operation allows users to retrieve detailed information about a specific asynchronous task by providing its unique identifier (UUID). This is useful in scenarios where you need to monitor or check the status and details of background or long-running operations initiated within the Infomaniak platform.
Practical examples include:
- Checking the completion status of a file upload or processing task.
- Retrieving results or metadata of an asynchronous operation triggered earlier.
- Debugging or auditing task executions by fetching their details.
Properties
| Name | Meaning |
|---|---|
| Task UUID | The unique identifier (UUID) of the asynchronous task to retrieve information about. |
Output
The output is a JSON object representing the details of the requested asynchronous task. It typically includes all relevant data returned by the Infomaniak API for that task, such as status, timestamps, results, or error messages if applicable.
No binary data output is produced by this operation.
Dependencies
- Requires an API authentication token credential for Infomaniak API access.
- The node makes HTTP GET requests to the Infomaniak API endpoint:
https://api.infomaniak.com/1/async/tasks/{taskUuid}
Troubleshooting
Common issues:
- Providing an invalid or non-existent Task UUID will result in an error indicating the task was not found.
- Network or authentication failures can cause request errors.
- Malformed or missing API credentials will prevent successful API calls.
Error messages:
"Task with UUID {taskUuid} not found": The specified task UUID does not exist or is incorrect. Verify the UUID value."Failed to retrieve task": General failure to fetch task data, possibly due to network issues or invalid credentials.
Resolution tips:
- Ensure the Task UUID is correct and corresponds to an existing task.
- Confirm that the API authentication token is valid and has sufficient permissions.
- Check network connectivity and API availability.
Links and References
- Infomaniak API Documentation (general reference for endpoints and authentication)
- Asynchronous Tasks API Endpoint (for more details on task management)