Actions36
- Document Actions
- Project Actions
- Project Task Actions
- User Actions
- Company Actions
Overview
This node integrates with the awork API to retrieve all projects based on specified criteria. It is useful for automating workflows that require fetching project data, such as project management dashboards, reporting tools, or synchronization with other systems. For example, a user can fetch all projects filtered by certain conditions or ordered by specific fields, and either retrieve all results or limit the number of projects returned.
Use Case Examples
- Fetch all projects where the duration is greater than 5 days.
- Retrieve projects ordered by their creation date in ascending order.
- Get a limited number of projects for quick overview or processing.
Properties
| Name | Meaning |
|---|---|
| Return All | Determines whether to return all projects or limit the results to a specified number. |
| Filter By | Filter the projects by specific criteria using the awork API filtering syntax. |
| Order By | Order the projects by a specific field and direction using the awork API ordering syntax. |
| Request Options | Additional request options such as batching, SSL certificate validation, proxy settings, and request timeout. |
Output
JSON
id- Unique identifier of the project.name- Name of the project.status- Current status of the project.startDate- Start date of the project.endDate- End date of the project.createdAt- Timestamp when the project was created.updatedAt- Timestamp when the project was last updated.
Dependencies
- awork API
- an API key credential for authentication
Troubleshooting
- Ensure the API key credential is correctly configured and has the necessary permissions to access project data.
- If filtering or ordering syntax is incorrect, the API may return errors or no results; refer to https://developers.awork.com/filtering and https://developers.awork.com/ordering for correct usage.
- Timeout errors may occur if the server is slow to respond; adjust the timeout setting in Request Options accordingly.
- SSL certificate validation errors can be bypassed by enabling 'Ignore SSL Issues' but use with caution as it reduces security.
Links
- awork API Filtering Documentation - Details on how to filter results using the awork API.
- awork API Ordering Documentation - Details on how to order results using the awork API.