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 allows you to create a new project in the OpenProject system via its API. It is useful for automating project management workflows, such as setting up new projects programmatically when triggered by other events or systems. For example, you could use this node to automatically create a project when a new client signs up or when a new product development cycle begins.
Properties
| Name | Meaning |
|---|---|
| Type | The type of the resource; fixed to "Project" for this operation. |
| Id | Numeric identifier for the project. |
| Identifier | A string identifier for the project. |
| Name | The name of the project. |
| Active | Boolean indicating if the project is active (true) or archived (false). |
| Status Explanation | JSON object with formatted text explaining the project's status (supports markdown and HTML). |
| Public | Boolean indicating if the project is publicly accessible. |
| Description | JSON object containing a formatted description of the project (supports markdown and HTML). |
| Created At | Timestamp string for when the project was created; writable only with special admin settings. |
| Updated At | Timestamp string for the most recent update to the project. |
| Links | JSON object containing various related API links and actions associated with the project. |
Output
The node outputs JSON data representing the newly created project as returned by the OpenProject API. This includes all the properties sent during creation along with any additional metadata or identifiers assigned by the server. There is no binary output.
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 sends requests with
Content-Type: application/jsonand expects JSON responses.
Troubleshooting
- Authentication errors: Ensure the API key and base URL are correctly set in the credentials.
- Validation errors: Check that required fields like
nameandidare provided and valid. - JSON parsing errors: When entering JSON for fields like
descriptionorstatusExplanation, ensure the JSON is well-formed. - Permission issues: Some fields like
createdAtmay require elevated permissions or special settings enabled on the OpenProject server.