Forum Discussion
- ChuckGrigsbyQrew CadetThe API_AddRecord returns the RID.
https://help.quickbase.com/api-guide/add_record.html#Response_Values
Append that to the URL you use to view a record in the table replacing rid=123 with the returned RID from the api call. In javascript you can use
window.location.replace("url.com/dbid?a=dr&rid="+rid) - NarayananKumbakQrew CadetThanks, it solved my problem!