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
Name | Data Type |
---|---|
Limit | String |
Page | String |
Search | String |
Status | String |
StartDate | String |
EndDate | String |
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
Name | Data Type |
---|---|
ID | String |
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
Name | Data Type |
---|---|
Limit | String |
Page | String |
Search | String |
Status | String |
Payment | String |
StartDate | String |
EndDate | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"topup",
"Action":"export",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Limit":10,
"Page":1,
"Search":"",
"Status":"",
"StartDate":"",
"EndDate":""
}
}