Thanks for you help LeventK
I don’t have any valid_if or editable_if statements in the target table columns.
I have 2 Change Data workflows that check all new Inquiry records, and if certain columns are filled in then a Barrier or a Breakthrough gets created.
I then have two separate workflow/web hooks that trigger when an Inquiry gets updated.
It looks for the breakthrough or Barrier ID and updates the record.
Here are the API Calls:
Breakthrough
{
“Action”: “Edit”,
“Properties”: {
“Locale”: “en-US”,
“Location”: “47.623098, -122.330184”,
“Timezone”: “Pacific Standard Time”,
“RunAsUserEmail”: “YourEmail@google.com”
},
“Rows”: [
{
“Breakthrough ID”: “<<REF_ROWS(“Breakthroughs”, “Source”)>>”,
“Subject”: “<<[Subject]>>”,
“Alignment”: “<<[Alignment]>>”,
“Realignment”: “<<[Realignment]>>”,
“Discovery”: “<<[Discovery]>>”,
“Commitment”: “<<[Commitment]>>”,
“Life Domain”: “<<[Life Domain]>>”,
“Source”: “<<[Reflection ID]>>”
}
]
}
Barriers
{
“Action”: “Edit”,
“Properties”: {
“Locale”: “en-US”,
“Location”: “47.623098, -122.330184”,
“Timezone”: “Pacific Standard Time”,
“RunAsUserEmail”: “YourEmail@google.com”
},
“Rows”: [
{
“Barrier ID”: “<<REF_ROWS(“Barriers”, “Source”)>>”,
“Subject”: “<<[Subject]>>”,
“Misalignment”: “<<[Misalignment]>>”,
“Perceived Barriers”: “<<[Perceived Barriers]>>”,
“Hidden Commitments”: “<<[Hidden Commitment]>>”,
“Meaning”: “<<[Meaning]>>”,
“Impact”: “<<[Impact]>>”,
“Desire Gap”: “<<[Desire Gap]>>”,
“Discovery”: “<<[Discovery]>>”,
“Realignment”: “<<[Realignment]>>”,
“Commitment”: “<<[Commitment]>>”,
“Life Domain”: “<<[Life Domain]>>”,
“Source”: “<<[Reflection ID]>>”
}
]
}