Skip to main content

I am using a zap that has multiple webhook actions and I need to use the token from Wrike each time. If I needed to change this token I would then need to do it in each step. Thoughts on the best approach to store this in one step and then reference it in subesguent steps?

@Judah Ferst - Try with a code step. Add an input field called token and set its value.

In the code, put the following code snippet:

return {
token: inputData.token,
};

Now you should be able to reference it in any subsequent steps.