BoBedingfield
6 years agoQrew Member
Webhook + json issue with multi-record updates
I'm trying to use a webhook to send requests to Microsoft Flow. My webhook works for single record updates, but for multi-record updates it only sends a request for the first changed record.
This section of the QuickBase help documentation seems to apply to my situation, but I can't figure out where/how to syntactically add the %repeatOn% and %repeatOff% instructions.
Here is my original message body that works for single record updates but not for multis:
I tried adding the repeat instructions here, but it is throwing an error:
Can anyone help me figure out what I'm doing wrong?
This section of the QuickBase help documentation seems to apply to my situation, but I can't figure out where/how to syntactically add the %repeatOn% and %repeatOff% instructions.
Here is my original message body that works for single record updates but not for multis:
{
"newStatus" : "[Implementation Status]",
"newNote" : "[Status Notes]",
"QuoteProdID" : "[Id]",
}
I tried adding the repeat instructions here, but it is throwing an error:
{
"newStatus" : "[%repeatOn%[Implementation Status], %repeatOff%]",
"newNote" : "[%repeatOn%[Status Notes], %repeatOff%]",
"QuoteProdID" : "[%repeatOn%[Id], %repeatOff%]",
}
Can anyone help me figure out what I'm doing wrong?