Skip to main content
Parsed Documents contain structured data extracted from documents uploaded and processed through Truv Bridge. Currently, only volunteer letters (VOLUNTEER_LETTER) are available through this endpoint; support for additional document types such as paystubs will be added in future releases.

Attributes

The table below covers the fields in a parsed document.
AttributeTypeDescription
idstringParsed document ID
document_typestringDocument type. Currently only VOLUNTEER_LETTER is supported.
document_subtypestring, nullDocument subtype, valid values below VOL_TRANSCRIPT, VOL_HOURS_LOG
fileuri, nullParsed document file link
md5sumstringParsed document MD5 checksum

Endpoints

Use the endpoints below to get information on parsed documents.

Example response

The sample below is a JSON response for the List endpoint.
{
  "count": 1,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "document_type": "VOLUNTEER_LETTER",
      "document_subtype": "VOL_TRANSCRIPT",
      "file": "https://cdn.truv.com/files_examples/VOLUNTEER_LETTER.pdf",
      "md5sum": "24d7e80942ce4ad58a93f70ce4115f5c"
    }
  ]
}