Actions50
- Status Actions
- Task Actions
- Calendar Actions
- ClientProfile Actions
- Comment Actions
- Company Actions
- Invoice Actions
- Project Actions
- Role Actions
- Time Entry Actions
- Trigger Actions
- User Actions
Overview
This node integrates with the Scoro API, allowing users to interact with various Scoro resources such as projects, tasks, clients, invoices, and more. Specifically, for the Project - Get operation, it retrieves detailed information about a single project by its ID or from a selectable list.
Common scenarios include:
- Fetching project details to display or use in workflows.
- Automating reporting or synchronization of project data.
- Triggering downstream actions based on project attributes.
Example: A user can select a project from a searchable list or enter a numeric project ID to retrieve its full details, which can then be used to update other systems or generate reports.
Properties
| Name | Meaning |
|---|---|
| Project | Select a project either from a searchable list of existing projects or by entering its numeric ID manually. |
The "Project" property supports two modes:
- From List: Search and select a project from available projects.
- By ID: Enter the numeric ID of the project directly (must be numeric).
Output
The node outputs JSON data representing the retrieved project details as returned by the Scoro API. This typically includes fields such as project name, description, status, dates, assigned users, and other metadata relevant to the project.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Scoro API.
- The base URL and company account ID are obtained from the configured credentials.
- The node uses internal helper methods to handle API requests and pagination if applicable.
Troubleshooting
Error: Operation 'get' for resource 'project' is not supported.
This indicates that the requested operation-resource combination is invalid or not implemented. Verify that the resource is set to "Project" and operation to "Get".Invalid Project ID format.
When entering the project ID manually, ensure it is numeric as per validation rules.Authentication errors.
Ensure the API key and other credential details are correctly configured and have sufficient permissions.Empty or no results returned.
Confirm the project ID exists and is accessible with the provided credentials.
Links and References
- Scoro API Documentation (for detailed API endpoints and data structures)
- n8n Documentation on Creating Custom Nodes