Report Transfers
You can see the status of transfers at this step. ILists the transfers between the specified two dates.
The parameters that need to be sent to the service are as follows:
Request Parameters
DealerNo
string
It is the dealer number created for the dealer.
Username
string
It is the username created for the dealer.
Password
string
It is the password created for the dealer.
StartDate
datetime
It is the start date information.
EndDate
datetime
It is the end date information.
{
"Header": {
"DealerNo": "dealerno",
"Username": "username",
"Password": "password"
},
"StartDate": "2023-10-10",
"EndDate": "2023-10-28"
}An example of the response from the service is as follows:
Report Transfer Response Parameters
TransferId
int
It is the id information of transfer.
TransferTypeId
int
It is the id information of transfer tyoe.
SenderAmount
decimal
It is the amount of transfer
SenderCurrencyId
int
Sender customer's currency ID information.
SenderCurrencyName
string
It is the sent currency code.
SenderFullName
string
It is the fullname of the sender customer.
ReceiverFullName
string
It is the fullname of the receiver customer.
TransferStatusId
int
It is the id information of the transfer status.
TransferStatusName
string
It is the name of the transfer status.
InsertDateTime
datetime
The creation date of the transfer.
ReceiveDateTime
datetime
It is the receiving date.
IsActive
bool
Indicates the active status.
IsDelete
bool
Indicates the deletion status.
An example response model is shared below:
Last updated