Apple
April 28, 2024, 1:06am
9
Let’s try something, instead of putting JSON directly there in JSON data, put a Group step and inside it put a Set Value description = {{ $_POST.descriptions }}
.
Missed this post.
The Group allows you to create an object. I sometimes use it for exmaple as such:
[image]
Which will give you this JSON object:
{
"buyer_info": {
"recip_name": "Example name",
"recip_contact_name": "Example contact name",
"recip_email": "email@gmail.com",
"recip_address_line_1": "aergae1",
"recip_address_line_2": "2232AA Test",
"recip_address_line_3": "NL"
}
}
And another way that I use it, is to organise my server actions, visually:
[image]
…