Web Report Top Up

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


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

Master

Used to display a list of data from all top up transactions.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
StartDateString
EndDateString

Example Request

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


Detail

Used to display the details of top up transaction based on id transaction.

Payload Data

NameData Type
IDString

Example Request

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


Export

Used to download or export the list report top up.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
PaymentString
StartDateString
EndDateString

Example Request

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