Web Report Master Voucher

The function of the Web Report Master Voucher service is to display master data related to all products provided on the web admin. The following is a detailed explanation of the three actions on the master voucher.

Here's the detail of service action in Web Report Master Voucher :

Master

Used to display a list of data from all voucher transactions.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
StartDateString
EndDateString

Example Request

{
    "Subject":"ewallet",
    "SubjectType":"webreport",
    "SubjectIdentifier":"voucher",
    "Action":"master",
    "ResourceType":"",
    "Resource":"",
    "ResourceId":"",
    "Data":{ 
            "Limit":10,
            "Page":1,
            "Search":"",
            "Status":"",
            "StartDate":"",
            "EndDate":""
           }
}


Detail

Used to display the details of voucher transaction based on id transaction.

Payload Data

NameData Type
IDString

Example Request

{
    "Subject":"ewallet",
    "SubjectType":"webreport",
    "SubjectIdentifier":"voucher",
    "Action":"detail",
    "ResourceType":"",
    "Resource":"",
    "ResourceId":"",
    "Data":{ 
            "Id":3967404
           }
}


Export

Used to download or export report voucher transaction data.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
DestinationString
PaymentString
StartDateString
EndDateString

Example Request

{
    "Subject":"ewallet",
    "SubjectType":"webreport",
    "SubjectIdentifier":"voucher",
    "Action":"export",
    "ResourceType":"",
    "Resource":"",
    "ResourceId":"",
    "Data":{ 
            "Limit":10,
            "Page":1,
            "Search":"",
            "Status":"",
            "StartDate":"",
            "EndDate":""
           }
}