GET api/service/fee/detail-debt/{VendorCode}?ApiKey={ApiKey}&SecretKey={SecretKey}&Id={Id}
Lấy danh sách Công nợ theo mặt bằng
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorCode |
Chi nhánh |
string |
Required |
| ApiKey | string |
Required |
|
| SecretKey | string |
Required |
|
| Id |
Mã hợp đồng |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FeeDetailDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceName |
Dịch vụ |
string |
None. |
| DateOfPayment |
Ngày phát sinh |
date |
None. |
| AmountIncurred |
Số tiền phát sinh |
decimal number |
None. |
| AmountPaid |
Số tiền đã thanh toán |
decimal number |
None. |
| AmountOwed |
Số tiền còn nợ |
decimal number |
None. |
| Description |
Diễn giải |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ServiceName": "sample string 1",
"DateOfPayment": "2025-12-06T12:45:55.8962612+07:00",
"AmountIncurred": 1.0,
"AmountPaid": 1.0,
"AmountOwed": 1.0,
"Description": "sample string 3"
},
{
"ServiceName": "sample string 1",
"DateOfPayment": "2025-12-06T12:45:55.8962612+07:00",
"AmountIncurred": 1.0,
"AmountPaid": 1.0,
"AmountOwed": 1.0,
"Description": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeeDetailDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiService.Models">
<FeeDetailDto>
<AmountIncurred>1</AmountIncurred>
<AmountOwed>1</AmountOwed>
<AmountPaid>1</AmountPaid>
<DateOfPayment>2025-12-06T12:45:55.8962612+07:00</DateOfPayment>
<Description>sample string 3</Description>
<ServiceName>sample string 1</ServiceName>
</FeeDetailDto>
<FeeDetailDto>
<AmountIncurred>1</AmountIncurred>
<AmountOwed>1</AmountOwed>
<AmountPaid>1</AmountPaid>
<DateOfPayment>2025-12-06T12:45:55.8962612+07:00</DateOfPayment>
<Description>sample string 3</Description>
<ServiceName>sample string 1</ServiceName>
</FeeDetailDto>
</ArrayOfFeeDetailDto>