Custom Item Type Excel Import
Hi
I want to import several project over Excel import. These porject have to a specific Costum Item Type (CIT). I have no possibility to link the excel to the CIT. Is there any workflow for that or can you please add this function?
Upvoting!
We have been moving towards CITs as an initial push from our previous Wrike Professional Services contact, so the fact that CITs isn't supported kind of throws a wrench in our wheel as we are trying to find solutions to create bulk items (i.e. through Excel import).
Hi everyone — Sumanyu here, Engineering Manager for Wrike’s Public APIs.
There are two ways to automate this — one no-code (MCP-based) and one script-based (as previously suggested by Anmol).
Both approaches use Wrike’s Public API under the hood to achieve the same outcome.
MCP-Based (No-Code) Approach
Using the Wrike MCP Server, users can convert all imported tasks to a chosen CIT interactively, without writing code.
Script-Based Approach
For those who prefer a programmable route, there are two options:
POST /folders/{folderId}/tasks
PUT /tasks/{ids}?convertToCustomItemType={citId}API to update all imported tasks — the same mechanism leveraged by MCP.To automate the complete process using custom scripts you can also use Wrike Integrate to listen to a Webhook when a new task is created inside a specific folder and then create a recipe to call
PUT /tasks/{ids}?convertToCustomItemType={citId} to do the required conversion.
Recommendation:
Start with the MCP approach — it’s easier to maintain, scalable, and doesn’t require coding. I’m happy to share a simple script version if anyone prefers that route.
Sumanyu Soniwal Community Team at Wrike Wrike Product Manager Conviértete en un experto de Wrike con Wrike Discover
Sumanyu Soniwal Wrike Team member Conviértete en un experto de Wrike con Wrike Discover
upvoting
unvoating, counting 83, how many votes are needed?