How to Create a Google Worksheet Using a Zoom Webinar ID without Causing an Error?

This topic was automatically generated from Slack. You can find the original thread here.

Hey everyone. So I have a step to create a google worksheet using a Zoom Webinar ID - the issue is that the variable is a number and that results in an error as attached. Is there a way to make this work within the step or do I need to add another formatting step to pass it as a string?

I think you can put JS in between the {{ }} tags

Try adding .toString() at the end.

like {{steps.trigger.event.payload.object.id.toString()}}

Otherwise, you could just use a static prefix or suffix, if that works for you. Like: prefix_{{steps.trigger.event.payload.object.id}}_or_suffix

.toString() worked perfectly THANKS!