1. Files
Flow Download Manager API
  • Public
    • Health check
      GET
    • List published books
      GET
    • Request a single book download
      POST
    • Request a bulk download (all books for a language)
      POST
    • Download a file via token
      GET
  • Books
    • List all books
      GET
    • Create a book
      POST
    • Get book details
      GET
    • Update a book
      PUT
    • Soft-delete a book
      DELETE
    • Bulk upsert books
      POST
    • Reorder books
      PATCH
  • Files
    • List files for a book
      GET
    • Add a file (local upload or cloud link)
      POST
    • Upload or replace a file
      PUT
    • Update file metadata
      PATCH
    • Delete a file
      DELETE
  • Translations
    • Add or update a translation
      POST
    • Delete a translation
      DELETE
  • Languages
    • List all languages
      GET
    • Create a language
      POST
    • Get language usage stats
      GET
    • Update a language
      PUT
    • Delete a language
      DELETE
  • Channels
    • List distribution channels
    • Create a channel
    • Update a channel
    • Delete a channel
    • Get publication matrix
    • Toggle a publication
  • Contacts
    • List contacts (paginated)
    • Get contact details with download history
    • Export contacts as CSV
  • Analytics
    • Dashboard summary
    • Downloads over time
    • Downloads by book
    • Downloads by country
    • Downloads by language
    • Downloads by device type
    • Download event log (paginated)
    • Export download events as CSV
  • Settings
    • Get app settings
    • Update GeoIP database
  • API Keys
    • List API keys
    • Create an API key
    • Revoke an API key
  • Schemas
    • Error
    • Pagination
    • PublicBook
    • AdminBook
    • BookDetail
    • BookFile
    • Translation
    • Language
    • Channel
    • ApiKey
    • Contact
    • DownloadEvent
  1. Files

List files for a book

GET
/api/admin/books/{bookId}/files

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
API Key
Add parameter in cookie
next-auth.session-token
Example:
next-auth.session-token: ********************
or
Path Params

Responses

🟢200
application/json
File list
Body

🟠404
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/admin/books//files' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "files": [
        {
            "id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
            "bookId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
            "languageId": 1,
            "fileType": "pdf",
            "sourceType": "local",
            "filePath": "storage/books/files/the-great-controversy/en/gc-en.pdf",
            "cloudUrl": null,
            "cloudDirectUrl": null,
            "fileName": "gc-en.pdf",
            "fileSizeBytes": 5242880,
            "mimeType": "application/pdf",
            "downloadCount": 320,
            "isActive": 1,
            "uploadedAt": "2026-02-01T10:00:00.000Z",
            "languageCode": "en",
            "languageName": "English"
        }
    ]
}
Modified at 2026-03-27 22:49:45
Previous
Reorder books
Next
Add a file (local upload or cloud link)
Built with