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
This node operation creates a new grid within the OpenProject system. A grid is a structured layout defined by a specific number of rows and columns, populated with widgets that represent various data or UI elements. This operation is useful when you want to programmatically define custom grid layouts for organizing work packages or other project-related information visually.
Practical examples include:
- Automatically generating dashboards with predefined grid layouts.
- Creating custom views for project data where each widget displays different metrics or statuses.
- Setting up grids that link to other resources or actions within OpenProject.
Properties
| Name | Meaning |
|---|---|
| Row Count | The number of rows the grid will have. |
| Column Count | The number of columns the grid will have. |
| Widgets | A JSON array defining the set of widgets placed on the grid. Widgets must not overlap. |
| Links | A JSON object specifying related API links, such as the scope for creating work packages. |
Output
The node outputs JSON data representing the newly created grid resource as returned by the OpenProject API. This typically includes details such as the grid's ID, its dimensions (rows and columns), the configured widgets, and any associated metadata or links.
If the API supports binary data in responses (not indicated here), it would be summarized accordingly, but this node primarily deals with JSON data structures.
Dependencies
- Requires an API key credential for authenticating with the OpenProject API.
- The base URL for the OpenProject instance must be configured in the node credentials.
- The node uses the OpenProject REST API v3 endpoints to create grids and related resources.
Troubleshooting
- Invalid Widget Configuration: If widgets overlap or are incorrectly formatted, the API may reject the request. Ensure the widgets array is valid JSON and respects non-overlapping constraints.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Verify that the API key and base URL are correctly set.
- Invalid Row/Column Counts: Providing zero or negative numbers for row or column counts may result in errors. Use positive integers.
- Malformed JSON in Widgets or Links: Since these properties expect JSON strings parsed into objects, ensure proper JSON formatting to avoid parsing errors.