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