Web Report PPOB

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

NameData Type
LimitString
PageString
SearchString
StatusString
ProductString
PaymentString
StartDateString
EndDateString

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

NameData Type
IDString

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

NameData Type
LimitString
PageString
SearchString
StatusString
ProductString
PaymentString
StartDateString
EndDateString

Example Request

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