Files
A file is a binary asset such as a profile picture or a company logo. URLs like pictureFileUrl point here and need the same bearer token as the rest of the API.
Every endpoint below shows its parameters and response fields in the middle and a request sample with an example response on the right.
Streams a file (e.g. a profile picture) by id
GET
/v1.0/files/{fileId}Returns the raw file bytes with the stored content type. Referenced by pictureFileUrl. Requires the same Bearer token as the rest of the API. 404 if the file does not exist.
Path parameters
fileIdstringrequiredId of the file.
Status codes
- 200Raw file bytes.
- 400
Invalid request (validation error).
- 401
Missing or invalid bearer token.
- 404
Resource not found or not accessible.
- 429
Rate limit exceeded (per token/IP). Transcription uploads may also return
codeFUP_LIMIT_EXCEEDEDorTOO_MANY_CONCURRENT_TRANSCRIPTIONS. - 500
Internal server error.