GET api/HistoryApi/PaymentHistory?loginId={loginId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loginId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of usp_GetPaymentHistory_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Payment | decimal number |
None. |
|
| PaymentDate | string |
None. |
|
| Comments | string |
None. |
|
| CreatedDate | string |
None. |
|
| IsEdit | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Payment": 2.1,
"PaymentDate": "sample string 3",
"Comments": "sample string 4",
"CreatedDate": "sample string 5",
"IsEdit": true
},
{
"Id": 1,
"Payment": 2.1,
"PaymentDate": "sample string 3",
"Comments": "sample string 4",
"CreatedDate": "sample string 5",
"IsEdit": true
}
]
application/xml, text/xml
Sample:
<ArrayOfusp_GetPaymentHistory_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMS.DataModels">
<usp_GetPaymentHistory_Result>
<Comments>sample string 4</Comments>
<CreatedDate>sample string 5</CreatedDate>
<Id>1</Id>
<IsEdit>true</IsEdit>
<Payment>2.1</Payment>
<PaymentDate>sample string 3</PaymentDate>
</usp_GetPaymentHistory_Result>
<usp_GetPaymentHistory_Result>
<Comments>sample string 4</Comments>
<CreatedDate>sample string 5</CreatedDate>
<Id>1</Id>
<IsEdit>true</IsEdit>
<Payment>2.1</Payment>
<PaymentDate>sample string 3</PaymentDate>
</usp_GetPaymentHistory_Result>
</ArrayOfusp_GetPaymentHistory_Result>