Sending lead data via HTTP

Created a simple Worflow to send lead data via HTTP. It turns out that I can only send Record.ID, but I need name, phone, email (information from values).


I tried to specify record.values in the body, when testing the workflow the request is sent, but when creating a lead - nothing.
How can I pass information from values? And is there somewhere I can see a list of all the variables that can be used?

You can only send strings via body, so you’ll have to turn the values(KV) into a string.
You can try using the toJSON function.

For example: toJSON(record.values)

1 Like

Thank you, I will try.