/** * @example * {} */ export interface FilesRetrieveRequest { /** * **Deprecated:** Use `POST /parse_runs` instead to parse file contents. * * If set to true, the raw text content of the file will be included in the response. */ rawText?: boolean; /** * **Deprecated:** Use `POST /parse_runs` instead to parse file contents. * * If set to true, the markdown content of the file will be included in the response. * * Only available for files with a type of PDF, IMG, or DOCX files that were auto-converted to PDFs. */ markdown?: boolean; /** * **Deprecated:** Use `POST /parse_runs` instead to parse file contents. * * If set to true, the html content of the file will be included in the response. * * Only available for files with a type of DOCX. */ html?: boolean; /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; }