For all operations listed below you will need to provide HTTP Request Header Authorization param. For more details see Login/Auth page.

Get the list of Document Types

Route: /document_type

Method: GET

Example result

"entities": [
    {
        "name": "Name of the Doc-Type",
        "is_active": "1",
        "id": "1",
        "created_at": "Creation Time",
        "updated_at": "Update Time"
    },
    {
        ...
    }
    ...
"total": 123,
"result": true

Get document type by internal ID

Route: /document_type/{internal_id}

Method: GET

Example result

{
    "entity": {
        "name": "Name of the Doc-Type",
        "is_active": "1",
        "id": "1",
        "created_at": "Creation Time",
        "updated_at": "Update Time"
    },
    "result": true
}