GET api/GetAllPaymentSchedule
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GetAllPaymentScheduleVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Count | integer |
None. |
|
| Data | Collection of GetAllPaymentSchedulesVm |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": 1,
"Data": [
{
"Id": 1,
"Month": 2,
"MonthName": "sample string 3",
"Year": 4,
"PaidDate": "sample string 5",
"DueDate": "sample string 6",
"IsPaid": true,
"IsNotApplicable": true,
"ReservationId": 1,
"OwnerSubscriptionId": 1,
"PaymentId": 1
},
{
"Id": 1,
"Month": 2,
"MonthName": "sample string 3",
"Year": 4,
"PaidDate": "sample string 5",
"DueDate": "sample string 6",
"IsPaid": true,
"IsNotApplicable": true,
"ReservationId": 1,
"OwnerSubscriptionId": 1,
"PaymentId": 1
}
]
}
application/xml, text/xml
Sample:
<GetAllPaymentScheduleVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.PG">
<Count>1</Count>
<Data>
<GetAllPaymentSchedulesVm>
<DueDate>sample string 6</DueDate>
<Id>1</Id>
<IsNotApplicable>true</IsNotApplicable>
<IsPaid>true</IsPaid>
<Month>2</Month>
<MonthName>sample string 3</MonthName>
<OwnerSubscriptionId>1</OwnerSubscriptionId>
<PaidDate>sample string 5</PaidDate>
<PaymentId>1</PaymentId>
<ReservationId>1</ReservationId>
<Year>4</Year>
</GetAllPaymentSchedulesVm>
<GetAllPaymentSchedulesVm>
<DueDate>sample string 6</DueDate>
<Id>1</Id>
<IsNotApplicable>true</IsNotApplicable>
<IsPaid>true</IsPaid>
<Month>2</Month>
<MonthName>sample string 3</MonthName>
<OwnerSubscriptionId>1</OwnerSubscriptionId>
<PaidDate>sample string 5</PaidDate>
<PaymentId>1</PaymentId>
<ReservationId>1</ReservationId>
<Year>4</Year>
</GetAllPaymentSchedulesVm>
</Data>
</GetAllPaymentScheduleVm>