Wrike is a great project management tool that we use at Material. We extensively use custom fields and recurring tasks. A major use case is to have recurring tasks for clients, and the client info is in the custom fields.
However, recurring tasks do not include the custom fields. There have been multiple requests for this feature on the Wrike forums, but it has yet to be implemented.
We use Zapier and the Wrike API to accomplish this.
So, with that said, here is an overview of how to do this:
Before we can setup our Zap (in the next step), we need to find the internal IDs of the custom fields that we want to set on the duplicated tasks.
Under “Action” make inputData the task Title:
Under “Code”, add the following javascript code:
// you will need to customize this clientLookup object to contain
// the keys and data that make sense for your use case:
const clientLookup = {
"[AP]": { name: "Allied Farms", email: "guzman@alliedfarms.com" },
"[AS]": { name: "Apricot Sun", email: "apricotsun@yahoo.com" }
};
const clientKey = inputData.title.match(/\[.*?\]/)[0];
const clientName = clientLookup[clientKey].name || 'Unknown Client';
const clientEmail = clientLookup[clientKey].email || 'Unknown Email';
return {clientName: clientName, clientEmail: clientEmail}
Basically, this code is going to match on the title of the Wrike task and find the name and email from the clientLookup object and return them to the next step in the Zap. In our case, a task name like [AS] Summer Collection Email
will match to the [AS]
key and return the name Apricot Sun
and email apricotsun@yahoo.com
.
Connect your Wrike account, as before, and under Action configure it as follows:
Now you should have a Zap setup that will fetch new Wrike tasks, and based on the code in the title, will apply certain custom field values. So, when a recurring task is created in Wrike, Zapier will automatically apply the custom field values you specify in the Zap.
Of course, you can customize it as you like for your custom fields by modifying the javascript code in the Zap step 2 and then the customFields object in the Zap step 3.
Copyright 2025 Marc Gugliuzza