UploadFile
Upload file attachments in Quick Base.
Input
Name | Type | Required | Description |
SchemaName | String | True | The schema where the attachment field is located. |
TableName | String | True | The table where the attachment field is located. |
FieldName | String | True | The name of the attachment field. |
RecordId | String | True | The id of the record that will contain the file attachment. |
FileData | String | False | A string of data that will be used as the full contents of the file. This must be base-64 encoded. Required if LocalFile or Content are not specified. |
LocalFile | String | False | The local file path including the file name of the file to be uploaded. A value for this field is required when FileData or Content are not specified. |
FileName | String | False | The name you would like to give the document. If none is specified, the file name specified in the FullPath will be used. Required if FileData or Content is specified. |
Result Set Columns
Name | Type | Description |
Success | Boolean | Whether or not the operation was successful. |
URL | String | The URL of the file attachment. |