Actions46
- Calendar Actions
- ClientProfile Actions
- Company Actions
- Invoice Actions
- Project Actions
- Role Actions
- Status Actions
- Task Actions
- Time Entry Actions
- Trigger Actions
- User Actions
Overview
This node integrates with the Scoro API to perform operations on various resources, including tasks. Specifically, the "Get" operation for the "Task" resource retrieves detailed information about a single task by its identifier. This is useful in scenarios where you need to fetch and use specific task data within an automation workflow, such as displaying task details, updating related records, or triggering further actions based on task attributes.
Practical examples include:
- Fetching a task's details to display in a dashboard.
- Retrieving a task before updating its status or adding comments.
- Using task information to notify team members or trigger other workflows.
Properties
| Name | Meaning |
|---|---|
| Task | The task to retrieve. Can be selected from a searchable list of existing tasks or specified directly by its ID. |
The "Task" property supports two modes:
- From List: Search and select a task from a list of available tasks.
- By ID: Provide the unique identifier of the task directly.
Output
The node outputs JSON data representing the retrieved task's details as returned by the Scoro API. This typically includes fields such as task name, description, status, assigned users, deadlines, and other metadata relevant to the task.
If the node supports binary data output (not indicated here), it would represent any file attachments or related binary content associated with the task.
Dependencies
- Requires an active connection to the Scoro API via an API key credential.
- The node expects credentials that provide:
- Base URL of the Scoro instance.
- Company account identifier.
- API key for authentication.
These credentials must be configured in n8n prior to using the node.
Troubleshooting
- Operation Not Supported Error: If you select an unsupported operation-resource combination, the node will throw an error indicating the operation is not supported. Ensure you select valid combinations.
- Authentication Errors: If the API key or company account ID is incorrect or missing, requests will fail. Verify your credentials configuration.
- Task Not Found: Providing an invalid or non-existent task ID will result in an error or empty response. Double-check the task ID or use the list mode to select a valid task.
- API Rate Limits: Frequent calls may hit Scoro API rate limits; handle such errors by implementing retries or delays.