Web Report All Transaction

The function of the Web Report All Transaction service is to display all transaction reports on the web admin. The following is a detailed explanation of the three actions in the Report All Transaction Web Service.

Here's the detail of service action in Web Report All Transaction :

Master

Used to display a list of data from all transactions.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
StartDateString
EndDateString
OrderTypeString

Example Request

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


Detail

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

Payload Data

NameData Type
IDString

Example Request

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


Export

Used to download or export report transaction data.

Payload Data

NameData Type
LimitString
PageString
SearchString
StatusString
PaymentString
StartDateString
EndDateString
OrderTypeString

Example Request

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