/dataAccess/getDocumentTypeChargeStatuses/

Receives a list of all active document-type-charge-status records that are configured for the current system.

Request

POST {{server}}/VPE/dataAccess/getDocumentTypeChargeStatuses/
Content-Type: application/json

{
    "DeviceId": "device-id",
    "SessionId": "..."
}

Response

{
    "Success": true,
    "Message": "Operation executed successfully.",

    "DocumentTypeChargeStatuses": [
        {
            "Active": true,
            "DisplayName": "Visa",
            "DocumentType": 1,
            "Id": 1
        }, {
            "Active": true,
            "DisplayName": "Biometric Residence Permit",
            "DocumentType": 2,
            "Id": 2
        }, {
            "Active": true,
            "DisplayName": "Proof of Address (No Validation)",
            "DocumentType": 4,
            "Id": 3
        },
        ...
    ]
}
GetDocumentTypeChargeStatusesResponse.DocumentTypeChargeStatuses

= DocumentTypeChargeStatuses

List of active document-type-charge-status records that are configured for the current system.

See also

DocumentTypeChargeStatus for more information about document type charge status details.