After submitting a question to the chat query endpoint, the response includes anDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/FloxTBoTyy/BoardPulse-AI/llms.txt
Use this file to discover all available pages before exploring further.
exports array with download URLs for each generated file. Use this endpoint to download those files directly.
Request
Method:GETPath:
/api/v1/exports/{filename}
Path parameters
The name of the export file to download. This value comes from the
filename field in the exports array of a chat query response.Example: report-1714123456.csvResponse
On success, the endpoint returns the file as a binary download with the appropriate media type:| File extension | Media type |
|---|---|
.csv | text/csv |
.xlsx | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet |
| other | application/octet-stream |
Content-Disposition header is set to attachment with the original filename, so browsers and curl -O will save the file with the correct name.
Error response
If the requested file does not exist:404 Not Found
Example
Theexports array in a chat response looks like this:
Export files are stored in the directory specified by the
EXPORTS_DIR environment variable, which defaults to /tmp/boardpulse-exports. Files may be cleared when the container restarts unless you mount a persistent volume at that path.