Actions46
- 🏢 PROJECT Actions
- 📋 BOARD Actions
- 📝 CARD Actions
- ➕ Create Card
- 🔍 Get Card
- ✏️ Update Card
- 🗑️ Delete Card
- 🏷️ Add Label to Card
- 🚫 Remove Label from Card
- 👤 Add Member to Card
- 🚫 Remove Member from Card
- ✅ Create Task in Card
- 🔄 Update Task
- 🗑️ Delete Task
- 📎 Create Attachment in Card
- ✏️ Update Attachment
- 🗑️ Delete Attachment
- 📋 Get All Card Actions
- 💬 Create Comment on Card
- ✏️ Update Comment
- 🗑️ Delete Comment
- 👤 USER Actions
Overview
The Remove Manager from Project operation in the Planka n8n node allows you to remove a specific manager (administrator) from a project within your Planka workspace. This is useful for automating user management tasks, such as revoking admin rights when someone leaves a team or changes roles.
Common scenarios:
- Automatically removing a manager from a project when their employment ends.
- Integrating with HR or IT systems to keep project permissions up-to-date.
- Cleaning up project administration as part of regular audits.
Example:
If a user is no longer responsible for a project, this node can be used in an automated workflow to remove their manager role from that project in Planka.
Properties
| Name | Type | Meaning |
|---|---|---|
| Manager ID | String | The unique identifier of the project manager to be removed. |
Output
The output will be a JSON object reflecting the result of the removal operation. Typically, it may include confirmation details or the deleted manager's information, depending on the Planka API response. If an error occurs and "Continue On Fail" is enabled, the output will contain an error field with the error message.
Example output:
{
"id": "managerId123",
"status": "deleted"
}
or, on error:
{
"error": "Manager not found"
}
Dependencies
- Planka API: Requires access to a running Planka instance with API enabled.
- API Credentials: You must configure the
plankaApicredentials in n8n for authentication.
Troubleshooting
Common issues:
- Invalid Manager ID: If the provided Manager ID does not exist, the API will return an error.
- Insufficient Permissions: The API credentials used must have permission to modify project managers.
- Network/API Errors: Connectivity issues or incorrect API base URL can cause failures.
Error messages:
"Manager not found": The specified Manager ID does not exist. Double-check the ID."Unauthorized": Check your API credentials and permissions."An unknown error occurred": A generic error; check logs or enable more detailed error reporting.
