Files
SnapOtter/apps/docs/sv/tools/files/convert-document.md
T
SnapOtterandGitHub 4963ab3bbd feat(docs-i18n): translate all documentation into 20 languages
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
2026-07-11 13:52:47 +08:00

1.5 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
Konvertera mellan formaten Word, OpenDocument, RTF och oformaterad text. 89771292569d human d63ea4e6bb0b

Convert Document

Konvertera dokument mellan formaten Word (DOCX), OpenDocument (ODT), RTF och oformaterad text med LibreOffice.

API Endpoint

POST /api/v1/tools/files/convert-document

Tar emot multipart-formulärdata med en Word/ODT/RTF/TXT-fil och ett JSON-fält settings.

Parameters

Parameter Type Required Default Description
format string Yes - Utdataformat: docx, odt, rtf, txt

Example Request

curl -X POST http://localhost:1349/api/v1/tools/files/convert-document \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@report.docx" \
  -F 'settings={"format": "odt"}'

Example Response

Returnerar 202 Accepted. Följ förloppet via SSE på /api/v1/jobs/{jobId}/progress.

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "async": true
}

Notes

  • Godkända indataformat: .docx, .doc, .odt, .rtf, .txt.
  • Konverteringen hanteras av LibreOffice som körs utan grafiskt gränssnitt på servern.
  • Komplex formatering (makron, inbäddade objekt) kanske inte överlever konvertering mellan format.
  • Utdataformatet måste skilja sig från indataformatet.