Wrike icon

Wrike

Wrike API

Actions3

Overview

The Wrike Task: IDs Converter operation in this custom n8n node is designed to convert or process a list of task IDs within the Wrike platform. This operation is particularly useful when you need to translate, validate, or fetch information about multiple tasks using their IDs in bulk. Common scenarios include synchronizing task data between systems, batch processing of tasks, or preparing lists of tasks for further automation steps.

Practical Example:
Suppose you have a CSV file with a column of Wrike task IDs and want to retrieve details or perform operations on all those tasks at once. You can use this node to input the comma-separated IDs and process them efficiently.

Properties

Name Meaning
ID(s) Comma-separated list of Wrike task IDs to be converted or processed (e.g., FF545646,GGF56464).

Output

  • The output is a JSON array containing the results from the Wrike API for the provided task IDs.
  • Each item in the array corresponds to the response for the given set of IDs.
  • The structure of each item depends on the Wrike API's /ids endpoint response for tasks, typically including fields such as id, type, and possibly additional metadata about each task.

Example Output:

[
  {
    "kind": "ids",
    "data": [
      {
        "id": "FF545646",
        "type": "ApiV2Task"
      },
      {
        "id": "GGF56464",
        "type": "ApiV2Task"
      }
    ]
  }
]

Dependencies

  • External Service: Requires access to the Wrike API.
  • API Key/Credentials: Needs valid Wrike API credentials configured in n8n under the name wrikeApi.
  • n8n Configuration: No special environment variables are required beyond standard credential setup.

Troubleshooting

  • Common Issues:

    • Invalid or Missing IDs: If the ID(s) field is empty or contains invalid IDs, the API may return an error or empty result.
    • Authentication Errors: If the Wrike API credentials are not set up correctly, authentication will fail.
    • Rate Limiting: Sending too many requests in a short period may trigger Wrike API rate limits.
  • Error Messages & Resolutions:

    • 401 Unauthorized: Check that your Wrike API credentials are correct and active.
    • 400 Bad Request: Ensure the ID(s) field contains valid, comma-separated Wrike task IDs.
    • 404 Not Found: One or more provided IDs do not exist in your Wrike account.

Links and References

Discussion