Best answer

storing of a token that is used throughout a zap

  • 14 January 2021
  • 1 reply
  • 87 views

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?

icon

Best answer by ikbelkirasan 14 January 2021, 15:39

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

Userlevel 7
Badge +12

@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.