I have a datamodel in Dataverse with two main tables
There is a many-to-many relationship between these two tables, and this is done (behind the scenes) by creating a relationship table. In my case it is called "gp_Document_gp_Role_gp_Role".
This table is not directly exposed in the Dataverse connector, but I have discovered through the Web API that the table is exposed as "gp_document_gp_roleset" and I use that to iterate over the items using the normal "List rows" action.
It works like a charm 😊.
However - I also need to add rows to that table, but it is causing me some problems. When I use the "Add a new row" action and type in "gp_document_gp_roleset" as custom value, I need to specify a "Body" property:

I thought is would just be a JSON fragment like
{
"field 1": "value 1",
"field 2": "value 2",
}
But it doesn't work and I cannot find any documentation about how to use this property.
Can anyone help me figure out what the format of the content in the "Body" property should be?
Thanks 😊
Jesper