PaulTrimor
8 years agoQrew Cadet
How to grant public API access to a field?
I am trying to create an email confirmation feature for my Quickbase app.
The design I had in mind was to send an email to the user once a new record has been created.
Inside the email is this API call
When calling this url with/without any authentications yields
<qdbapi>
<action>API_EditRecord</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<rid>111</rid>
<num_fields_changed>0</num_fields_changed>
<update_id>1499272930667</update_id>
Is there a way I can give public access to the a certain field, in my case a checkbox fid_273?
I would like the user to verify his/her email by clicking a url and it checking a field in the database.
thanks.
The design I had in mind was to send an email to the user once a new record has been created.
Inside the email is this API call
urlroot() & "db/%dbid%/" & "a=API_EditRecord?rid=%recid%&fid_273=1
When calling this url with/without any authentications yields
<qdbapi>
<action>API_EditRecord</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<rid>111</rid>
<num_fields_changed>0</num_fields_changed>
<update_id>1499272930667</update_id>
</qdbapi>The response indicates no error, but the field I was targeting remains unchanged.
Is there a way I can give public access to the a certain field, in my case a checkbox fid_273?
I would like the user to verify his/her email by clicking a url and it checking a field in the database.
thanks.