The function of the Web Report Transfer Out 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 Transfer Out Web Report Service.
Here's the detail of service action in Web Report Transfer Out :
Master
Used to display a list of data from all transfer out transactions.
Payload Data
| Name | Data Type |
|---|---|
| Limit | String |
| Page | String |
| Search | String |
| Status | String |
| Destination | String |
| StartDate | String |
| EndDate | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"transferout",
"Action":"master",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Limit":10,
"Page":1,
"Search":"",
"Status":"",
"Destination":"",
"StartDate":"",
"EndDate":""
}
}
Detail
Used to display the details of transfer out transaction based on id transaction.
Payload Data
| Name | Data Type |
|---|---|
| ID | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"transferout",
"Action":"detail",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Id":3967453
}
}
Export
Used to download or export transfer out transaction data.
Payload Data
| Name | Data Type |
|---|---|
| Limit | String |
| Page | String |
| Search | String |
| Status | String |
| Destination | String |
| Payment | String |
| StartDate | String |
| EndDate | String |
Example Request
{
"Subject":"ewallet",
"SubjectType":"webreport",
"SubjectIdentifier":"transferout",
"Action":"export",
"ResourceType":"",
"Resource":"",
"ResourceId":"",
"Data":{
"Limit":10,
"Page":1,
"Search":"",
"Status":"",
"Destination":"",
"StartDate":"",
"EndDate":""
}
}