Skip to main content
Best answer

storing of a token that is used throughout a zap

  • January 14, 2021
  • 1 reply
  • 109 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?

Best answer by ikbelkirasanBest answer by ikbelkirasan

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

View original
Did this topic help you find an answer to your question?
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

ikbelkirasan
Forum|alt.badge.img+12
  • Zapier Expert
  • 555 replies
  • Answer
  • January 14, 2021

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