Ganesh Anthati
Ganesh Anthati

Reputation: 65

zapier set bundle bundle inputData programatically

In my Zapier action I'm using 0Auth2 for authentication everything works fine, but I want to use some value coming from authentication test method while making other API calls, I was trying to pass it across by setting that value one of the variables in a bundle.inputData object but it is not working, I want to know if there is a way to achieve this.

result from testAuth method is something like this

{
 "name":"User name",
 "networkId" : 12
}

I want to use that networkId property in other API calls.

Upvotes: 2

Views: 714

Answers (1)

xavdid
xavdid

Reputation: 5262

David here, from the Zapier Platform team.

You can achieve this by adding an input field with computed: true and returning networkId from the getAccessToken.

There's more info in these docs.

​Let me know if you've got any other questions!

Upvotes: 2

Related Questions