Web Report Qris

The function of the Web Report Qris service is to display Qris transaction reports from Qoin application users on the web admin. The following is a detailed explanation of the three actions in the Qris Web Report Service.

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

Master

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

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
StartDateString
EndDateString

Example Request

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


Detail

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

Payload Data

NameData Type
IDString

Example Request

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


Export

Used to download or export the list Qris transaction.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
PaymentString
StartDateString
EndDateString

Example Request

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