Plutio icon

Plutio

Consume Plutio API

Overview

The Plutio Project Move operation node allows you to change the order of projects within Plutio by moving a specified project to a new position in the list. This is useful for organizing and prioritizing your projects according to your workflow needs.

Common scenarios:

  • Reordering projects to reflect changing priorities.
  • Automating project management workflows where project order matters (e.g., for reporting or dashboard purposes).

Practical example:
Suppose you have several ongoing projects and want to move "Project X" after "Project Y" in your Plutio workspace. This node enables you to automate that reordering as part of an n8n workflow.


Properties

Name Type Meaning
Project ID String The unique identifier of the project you wish to move.
Index Number The position after which the project should be moved. This is typically another project's ID or its index in the list.

Output

The output will be a JSON object indicating the result of the move operation. Typical structure:

{
  "success": true
}
  • If the operation is successful, you receive { "success": true }.
  • If there is an error and "Continue On Fail" is enabled, you may receive:
{
  "error": "Error message"
}

No binary data is produced by this operation.


Dependencies

  • External Service: Requires access to the Plutio API.
  • API Credentials: You must configure valid Plutio API credentials in n8n under the name plutioApi.

Troubleshooting

Common issues:

  • Invalid Project ID: If the provided Project ID does not exist, the operation will fail.
  • Invalid Index: If the index does not correspond to a valid position or project, the move may not occur as expected.
  • Missing Credentials: If Plutio API credentials are not set up in n8n, the node will throw an authentication error.

Error messages:

  • "Request failed with status code 404": The Project ID or Index does not exist. Double-check the values.
  • "Authentication failed": Check your Plutio API credentials configuration in n8n.
  • "Missing required parameter: _id": Ensure you provide the Project ID.

How to resolve:

  • Verify all input values.
  • Ensure your Plutio API credentials are correct and active.
  • Check that the target index is valid and within the range of existing projects.

Links and References

Discussion