Actions199
- Collections Actions
- Forms Actions
- Actions Capabilities Actions
- Activities Actions
- Attachments Actions
- Budgets Actions
- Categories Actions
- Custom Actions Actions
- Custom Options Actions
- Documents Actions
- File Links Actions
- View File Link
- Delete File Link
- Open File Link
- Download File Link
- List Project Storages
- Get Project Storage
- Open Project Storage
- Create Storage
- Get Storage
- Update Storage
- Delete Storage
- Get Storage Files
- Prepare Storage File Upload
- Create Storage Folder
- Create Storage Oauth Credentials
- Open Storage
- Create Work Package File Link
- List Work Package File Links
- Grids Actions
- Groups Actions
- Help Texts Actions
- Memberships Actions
- Query Filter Instance Schema Actions
- News Actions
- Notifications Actions
- O Auth 2 Actions
- Posts Actions
- Principals Actions
- Priorities Actions
- Query Columns Actions
- Query Filters Actions
- Query Operators Actions
- Query Sort Bys Actions
- Relations Actions
- Previewing Actions
- Revisions Actions
- Roles Actions
- Time Entries Actions
- Time Entry Activities Actions
- Types Actions
- User Preferences Actions
- Wiki Pages Actions
- Work Schedule Actions
- Meetings Actions
- Values Property Actions
- Projects Actions
- Queries Actions
- Users Actions
- Statuses Actions
- Versions Actions
- Work Packages Actions
- Get Project Work Package Collection
- Create Project Work Package
- List Work Package File Links
- Form Create Work Package In Project
- Project Available Assignees
- List Work Packages
- Create Work Package
- Form Create Work Package
- List Work Package Schemas
- View Work Package Schema
- Delete Work Package
- View Work Package
- Update Work Package
- List Work Package Activities
- Comment Work Package
- Work Package Available Assignees
- Available Projects For Work Package
- List Available Relation Candidates
- Available Watchers
- Create Work Package File Link
- Form Edit Work Package
- Revisions
- Reminders
- List Watchers
- Add Watcher
- Remove Watcher
- Views Actions
Overview
The "List Grids" operation for the "Grids" resource retrieves a paginated list of grids from OpenProject. This node is useful when you want to fetch multiple grid configurations or views, potentially filtered by specific criteria such as associated work packages or pages.
Common scenarios include:
- Displaying available grids in a dashboard or UI.
- Automating reports or exports based on grid data.
- Filtering grids to find those related to particular projects or work packages.
For example, you might use this node to get all grids related to a specific project page and then process or display them elsewhere in your workflow.
Properties
| Name | Meaning |
|---|---|
| Offset | Page number inside the requested collection (used for pagination). |
| Page Size | Number of elements to display per page (controls how many grids are returned per request). |
| Filters | JSON string specifying filter conditions. Supports filtering grids by properties like the associated page or work package. The format matches the queries endpoint filters. |
Output
The node outputs a JSON array containing the list of grids retrieved from the API. Each item in the array represents a grid object with its details as returned by the OpenProject API.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the OpenProject API.
- Needs the base URL of the OpenProject instance configured in the credentials.
- The node uses standard HTTP headers for JSON content negotiation.
Troubleshooting
- Invalid Filters JSON: If the filters property contains malformed JSON, the API call will fail. Ensure the filters string is valid JSON matching the expected query format.
- Pagination Issues: Setting offset or page size incorrectly may result in empty responses or missing data. Verify these values correspond to actual pages available.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Confirm that the API key and base URL are correctly set in the node credentials.
- API Endpoint Changes: If the OpenProject API changes its filters or grid endpoints, the node may return errors or unexpected results. Check the OpenProject API documentation for updates.