Skip to main content
The DownloadAuthType enum specifies the authentication method to use when downloading media files during audio upload.

Values

none
Enum Value
No authentication required. The media file is publicly accessible.This is the default when download_auth is not provided.
bearer_token
Enum Value
Bearer token authentication. Requires the bearer field with a token.Fireflies will send Authorization: Bearer <token> when downloading the file.
basic_auth
Enum Value
HTTP Basic authentication. Requires the basic field with username and/or password.Fireflies will send Authorization: Basic <base64(username:password)> when downloading the file.

Usage

The DownloadAuthType enum is used in the DownloadAuthInput type to specify which authentication method should be used:

Examples

No Authentication (Default)

Or explicitly:

Bearer Token

Basic Authentication

Choosing the Right Authentication Method