Skip to main content
The Files service handles file uploads, downloads, and deletion. It’s useful for managing user-uploaded content, documents, images, and other binary data.

Overview

Upload Files

Upload a file from a browser or React Native environment:
Upload with custom options:
Upload a Blob directly:

Download Files

Get a download URL for a file:
Download URLs include authentication tokens and are temporary. Don’t cache them for extended periods.

Delete Files

Delete a file from the server:

Complete Example

File upload component with progress:

Integration with Records

Store file metadata in records:
Retrieve and display files from records:

Error Handling

Handle file upload errors:

Next Steps