## Download document file content `client.documents.download(stringid, RequestOptionsoptions?): Response` **get** `/documents/{id}/download` Download the binary content of the document file ### Parameters - `id: string` ### Returns - `unnamed_schema_1 = Response` ### Example ```typescript import Luminary from 'withluminary'; const client = new Luminary(); const response = await client.documents.download('id'); console.log(response); const content = await response.blob(); console.log(content); ```