Amazon S3 Multifile formula URL parameters

Prev Next

Formula URL parameters

URL Parameter

Description

Sample

clientid

Client identifier assigned to your account during the setup process.

clientid=Q2

appid

Unique identifier for the Quickbase app. This is used to verify that your app is authorized to use Amazon S3 Multifile.

appid=bdht2xebx or appid = AppID()

dbid

Unique identifier for the table. This is the table that stores the master record data. You can use the function dbid() instead of the actual table dbid, and Quickbase converts it correctly.

dbid=[_DBID_SAMPLE_TABLE]

or

dbid=bdht2xeby

or

dbid = Dbid()

msid

Record ID# of the master record in the master table to process. This indicates to Amazon S3 Multifile the specific record to process based on the [Record ID#] value. Typically, this is the built-in key field on the master table. If it has been renamed, use the renamed field label between the brackets.

msid=[Record ID#]

mss3keyfid

Amazon S3 key field ID that holds the value of the key that links the document to the record in Quickbase.

mskeyfid=81

mss3bktfid

The Amazon S3 bucket name field ID. This overrides the bucket used when saving files to Amazon S3. A default bucket is set up when your account is created, and if this parameter isn't passed, the default bucket is used. This is a way to override the default bucket.

mss3bkt=82

apptoken

The Application Token related to the current app. This is needed if your app requires Application Tokens to process formula URL button fields.

apptoken=xxxxxxxxxxxxxx

Bucket

Name of the bucket to store the files in. This field overrides the default bucket set up with us.

Bucket=test_bucket

details

This field is set to true if you are storing details related to the file uploaded in a different table within Quickbase. The details table usually holds the category or type of document uploaded.

details=true

or

details=false

detaildbid

The database ID of the details table.

detaildbid=[_DBID_DETAILS]

relatedfid

The field ID of the related field on the details table.

relatedfid=10

details3keyfid

The field ID of the S3 key field on the details table.

details3keyfid=9

noupload

When set to true, users can only view files already uploaded to Amazon S3.

noupload=True

or

noupload=False

NOTE: To store the files in Amazon S3, include the parameters for the service above. The key field should reference a field on the repository table.