Forum Discussion
JimHarrison
Qrew Champion
Quickbase needs the record to Save & Close. If the record change is on another table, a Webhook on the table where the Save & Close happens, writes to a check box on the table with the formula field.
------------------------------
Jim Harrison
transparency = knowledge + understanding : The Scrum Dudes
------------------------------
------------------------------
Jim Harrison
transparency = knowledge + understanding : The Scrum Dudes
------------------------------
PrashantMaheshw
2 years agoQrew Captain
Jim ! This is something I never thought about !
------------------------------
Prashant Maheshwari
------------------------------
------------------------------
Prashant Maheshwari
------------------------------
- JimHarrison2 years agoQrew ChampionYeah, it took me a couple years to think about it myself.
------------------------------
Jim Harrison
transparency = knowledge + understanding : The Scrum Dudes
------------------------------- MichaelTamoush2 years agoQrew CaptainOh my gosh the web hook idea to a check box is brilliant. I have spots where I have 4 child tables, thus 4 pipelines to trigger based on each one. Instead, I can have 4 webhooks, and only 1 pipeline! Dang, wish i thought of that years ago lol.
------------------------------
Michael Tamoush
------------------------------- JimHarrison2 years agoQrew Champion
Table where you make the Webhook:
https://domain.quickbase.com/db/<webhook table>?a=GenWebhookEdit&id=<webhook id>
Do your filters:Endpoint URL:
put the table dbid you want to check the boxhttps://domain.quickbase.com/db/<check box table>
Message header:
QuickBase-Action : API_ImportFromCSV
Message Body:
<qdbapi>
<usertoken></usertoken>
<apptoken></apptoken>
<records_csv>
<![CDATA[
%RepeatOn%
[Record ID#],"yes"
%RepeatOff%
]]>
</records_csv>
<clist>3.<field id of check box field></clist>
</qdbapi>
------------------------------
Jim Harrison
transparency = knowledge + understanding : The Scrum Dudes
------------------------------