Error codes
Error codes and their explanations
Overview
This page lists the error codes and their corresponding reasons for the Fireflies.ai API. You can refer to this page to understand the meaning and possible causes of different error codes that you may encounter while using the API. It provides a comprehensive reference for troubleshooting and resolving issues. Please visit Errors page for more details
API Errors
invalid_arguments
Returned when invalid arguments are passed to a query or mutation
object_not_found
Returned when the subject of your query or mutation is not found. For example, querying a non-existent userId would throw an object_not_found
error of the type User
forbidden
Returned when you are not allowed to perform an action
paid_required
Returned when you are required to be subscribed to a paid plan for the Fireflies.ai platform. The error will also mentioned the required tier
for such actions. For example, making a request to uploadAudio
as a free user will throw a paid_required
error with tier pro_or_higher
, which means that you need to be subscribed to a Pro or Higher plan to perform this action
not_in_team
Returned when you are attempting to query against a userId
that is not a part of your team
require_elevated_privilege
Returned when you are attempting to perform admin actions as a non-admin user
account_cancelled
Returned when your account has been cancelled due to non-payment or some other reason. Please contact support if you think this is a mistake
args_required
Returned when your query or mutation is missing one or more required arguments. The property extesions.metadata.fields
will provide the list of fields that have this constraints
too_many_requests
Returned when you have been rate-limited due to making too many requests. The field extensions.metadata.retryAfter
mentions the retryAfter
time
payload_too_small
Returned when the content size for uploadAudio
mutation is too small. Upload files larger than 500kb
to avoid this error
request_timeout
Returned when your request has taken too long to respond.
invalid_language_code
Returned when an invalid language code has been passed to a query or mutation
admin_must_exist
Returned when you are attempting to call setUserRole
for a single member team
Was this page helpful?