Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
Read this section of the HTTP API docs which describes two different ways of building URLs to file attachments:
File Management
https://help.quickbase.com/api-guide/filemanagement.html
You will probably have to build a formula for the URL from the [Record ID#], and the known fid and version like this:
Include this formula URL field in your clist when using API_GenResultsTable.
File Management
https://help.quickbase.com/api-guide/filemanagement.html
You will probably have to build a formula for the URL from the [Record ID#], and the known fid and version like this:
"https://quickbase.com/up/"; &In the above fid=8 and version=0.
Dbid() &
"/a/r" &
[Record ID#] &
"/e8/v0"
Include this formula URL field in your clist when using API_GenResultsTable.