Skip to main content
GET /partner/v1/cases/{id}/translation
Returns a readable HTML representation per source file, structured by page. Returns 400 if no upload was created with the translation feature.

Path parameters

id
string
required
TruEnroll case ID.

Response fields

data
object

Example

{
  "success": true,
  "message": "Translation retrieved",
  "data": {
    "id": "6850abc123def456ghi789",
    "externalId": "applicant-9876",
    "status": "completed",
    "files": [
      {
        "uploadId": "6850def456ghi789abc123",
        "fileId": "file_abc",
        "fileName": "transcript.pdf",
        "status": "completed",
        "htmlRepresentation": "<html>...</html>",
        "htmlPages": ["<html>page 1</html>", "<html>page 2</html>"]
      }
    ]
  }
}