Skip to content

Instantly share code, notes, and snippets.

@expiscornovus
Created October 1, 2021 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save expiscornovus/1411f46f33567e1614017a432aab7958 to your computer and use it in GitHub Desktop.
Save expiscornovus/1411f46f33567e1614017a432aab7958 to your computer and use it in GitHub Desktop.
Perform an unbound action merge Microsoft Dataverse
{
"actionName": "Merge",
"item/Target": {
"name": "@{outputs('Get_a_row_by_ID_-_Account1')?['body/name']}",
"accountid": "@{outputs('Get_a_row_by_ID_-_Account1')?['body/accountid']}",
"@@odata.type": "Microsoft.Dynamics.CRM.account"
},
"item/Subordinate": {
"name": "@{outputs('Get_a_row_by_ID_-_Account2')?['body/name']}",
"accountid": "@{outputs('Get_a_row_by_ID_-_Account2')?['body/accountid']}",
"@@odata.type": "Microsoft.Dynamics.CRM.account"
},
"item/UpdateContent": {
"name": "@{outputs('Get_a_row_by_ID_-_Account1')?['body/name']}",
"@@odata.type": "Microsoft.Dynamics.CRM.account"
},
"item/PerformParentingChecks": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment