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