Variables and cloud function documentation

Hi Everyone,

Are there any existing cloud function or accessible variables documentation? All the links I found so far are down (i.e. https://docs.yellow.ai/docs/platform_concepts/studio/cloud-function).

Cheers,
Timo

Hi @timodai

You can find docs on cloud functions here: Code | yellow.ai

To access any variables created on the bot inside the functions you can use this format

{{data.variables.yourVariableName}}

with this you can pull values from the bot, straight into the code section.

Similarly, if you want to assign values to variable, you will always have to resolve() that variable

Hope this helps!!