So I have a simple webhook running that is supposed to edit/update values on another table. The webhook used to work, it still APPEARS to be working, but the values on the updated table don’t actually change anymore. The body of the webhook template is
{
"Action": "Edit",
"Properties": {
"Locale": "en-US",
"Timezone": "Central Standard Time",
"RunAsUserEmail": "<<useremail()>>",
"UserSettings": {
"Jobsite": "<<usersettings(Jobsite)>>"
}
},
"Rows": [
<<Start: [related_drawings]>>
{
"Uniqueid": "<<[Uniqueid]>>",
"Releases": "<<[_thisrow].[uniqueid]>>",
"Deleted": "<<FALSE>>",
"Descoped": "<<FALSE>>",
"Jobsite": "<<usersettings(Jobsite)>>",
"Specification": "<<[Specification]>>",
"Active": "<<[Active]>>",
"PlanGrid_Link": "<<[PlanGrid_Link]>>",
"Added_By": "<<[Added_By]>>",
"Pending": "<<[Pending]>>",
"Elevation": "<<[Elevation]>>",
"Description": "<<[Description]>>",
"Areas": "<<[Areas]>>"
}
<<END>>
]
}
A part of the allegedly successful payload is
{
"UniqueID": "19dcd108",
"Jobsite": "jejfeowj8450",
"Specification": "72f6b539",
"Active": "Y",
"Added_By": "jane.doe@example.com",
"Descoped": "N",
"Deleted": "N",
"Releases": "9d404d17",
"Areas": "61190549"
},
After the bot/sync/webhook runs, everything is green and appears successful, but when checking the table for results, the column that needs to change, [Releases] is still blank, even though I can clearly see the value it should be receiving in the “successful” payload.
App: ReleaseTracker-1049060
Account ID: 1049060