Forum Discussion
MarkShnier__You
3 years agoQrew Legend
Here is generic syntax for executing successive API calls is this
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE))
& URLEncode(URLEncode("&rdr=" & URLEncode($URLFOUR)))
& URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLFIVE))))
& URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSIX)))))
& URLEncode(URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSEVEN))))))
In your case you want to grab off the first three lines in bold after defining above that, the three URL formula variable API calls to run.
var text CheckBox = .......;
var text RunImport = .......;
var text DisplayReport = .......;
$CheckBox
& "&rdr=" & URLEncode($RunImport)
& URLEncode("&rdr=" & URLEncode($DisplayReport))
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
$URLONE
& "&rdr=" & URLEncode($URLTWO)
& URLEncode("&rdr=" & URLEncode($URLTHREE))
& URLEncode(URLEncode("&rdr=" & URLEncode($URLFOUR)))
& URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLFIVE))))
& URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSIX)))))
& URLEncode(URLEncode(URLEncode(URLEncode(URLEncode("&rdr=" & URLEncode($URLSEVEN))))))
In your case you want to grab off the first three lines in bold after defining above that, the three URL formula variable API calls to run.
var text CheckBox = .......;
var text RunImport = .......;
var text DisplayReport = .......;
$CheckBox
& "&rdr=" & URLEncode($RunImport)
& URLEncode("&rdr=" & URLEncode($DisplayReport))
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------