Fundamentals
Errors
Error standards for the Fireflies API
Overview
Understanding how errors are structured and returned by the Fireflies API is key to effectively handling and troubleshooting issues. This page outlines the common error format and details specific error types.
Error schema
Our GraphQL API follows a standard format for returning errors. Errors are encapsulated within an errors
array in the response body.
Please visit Error codes to view explanations for error code types
message
String
requiredDescription of the error
code
String
requiredError code.
friendly
Boolean
requiredfriendly === true
are safe to show to the frontend client. Unfriendly errors may have technical
details that may not be useful to the UI layer.
extensions
Object
Contains useful metadata related to the error
Example
Additional Resources
Was this page helpful?