GET api/service/fee/{VendorCode}?ApiKey={ApiKey}&SecretKey={SecretKey}&Contracts={Contracts}&FromDate={FromDate}&ToDate={ToDate}

Lấy danh sách chi phí theo hợp đồng

Request Information

URI Parameters

NameDescriptionTypeAdditional information
VendorCode

Chi nhánh

string

Required

ApiKey

string

Required

SecretKey

string

Required

Contracts

Hợp đồng/căn hộ, cách nhau bằng ","

string

Required

FromDate

Thời gian bắt đầu phát sinh

date

Required

ToDate

Thời gian kết thúc phát sinh

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FeeCheckDto
NameDescriptionTypeAdditional information
ContractID

Mã hợp đồng, căn hộ

string

None.

Year

Năm

integer

None.

Month

Tháng

integer

None.

ServiceName

Tên dịch vụ

string

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.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContractID": "sample string 1",
    "Year": 2,
    "Month": 3,
    "ServiceName": "sample string 4",
    "AmountIncurred": 1.0,
    "AmountPaid": 1.0,
    "AmountOwed": 1.0
  },
  {
    "ContractID": "sample string 1",
    "Year": 2,
    "Month": 3,
    "ServiceName": "sample string 4",
    "AmountIncurred": 1.0,
    "AmountPaid": 1.0,
    "AmountOwed": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfFeeCheckDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiService.Models">
  <FeeCheckDto>
    <AmountIncurred>1</AmountIncurred>
    <AmountOwed>1</AmountOwed>
    <AmountPaid>1</AmountPaid>
    <ContractID>sample string 1</ContractID>
    <Month>3</Month>
    <ServiceName>sample string 4</ServiceName>
    <Year>2</Year>
  </FeeCheckDto>
  <FeeCheckDto>
    <AmountIncurred>1</AmountIncurred>
    <AmountOwed>1</AmountOwed>
    <AmountPaid>1</AmountPaid>
    <ContractID>sample string 1</ContractID>
    <Month>3</Month>
    <ServiceName>sample string 4</ServiceName>
    <Year>2</Year>
  </FeeCheckDto>
</ArrayOfFeeCheckDto>