Missed this post.
The Group allows you to create an object. I sometimes use it for exmaple as such:
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:
THe parallel action is explained somewhere, I haven’t used it yet. I think it allows you to run things async. So your application does NOT wait for the thing to finish that you put in the ‘parallel’ step. That way you can execute things in parallel.
However, I need confirmation on this.