The function of the PPOB Web Report service is to display PPOB transaction reports such as credit purchases and other PPOB transactions on the web admin. The following is a detailed explanation of the three actions in the PPOB Web Report Service.
Here's the detail of service action in Web Report PPOB :
Master
Used to display list the all data transaction.
Payload Data
| Name | Data Type |
|---|---|
| Limit | String |
| Page | String |
| Search | String |
| Status | String |
| Product | String |
| Payment | String |
| StartDate | String |
| EndDate | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"ppob",
"Action":"master",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Limit":10,
"Page":1,
"Search":"",
"Status":"",
"Product":"",
"Payment":"",
"StartDate":"",
"EndDate":""
}
}
Detail
Used to display the details of transaction based on id transaction.
Payload Data
| Name | Data Type |
|---|---|
| ID | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"ppob",
"Action":"detail",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Id":3967431
}
}
Export
Used to download or export the required PPOB data list.
Payload Data
| Name | Data Type |
|---|---|
| Limit | String |
| Page | String |
| Search | String |
| Status | String |
| Product | String |
| Payment | String |
| StartDate | String |
| EndDate | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"ppob",
"Action":"export",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Limit":10,
"Page":1,
"Search":"",
"Status":"",
"Product":"",
"Payment":"",
"StartDate":"",
"EndDate":""
}
}