GET api/service/fee/master/{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

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 FeeMasterDto
NameDescriptionTypeAdditional information
ID

Mã hợp đồng

string

None.

ContractID

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

string

None.

AmountOldDebt

Số tiền nợ đầu kỳ

decimal number

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:
[
  {
    "ID": "sample string 1",
    "ContractID": "sample string 2",
    "AmountOldDebt": 1.0,
    "AmountIncurred": 1.0,
    "AmountPaid": 1.0,
    "AmountOwed": 1.0
  },
  {
    "ID": "sample string 1",
    "ContractID": "sample string 2",
    "AmountOldDebt": 1.0,
    "AmountIncurred": 1.0,
    "AmountPaid": 1.0,
    "AmountOwed": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfFeeMasterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiService.Models">
  <FeeMasterDto>
    <AmountIncurred>1</AmountIncurred>
    <AmountOldDebt>1</AmountOldDebt>
    <AmountOwed>1</AmountOwed>
    <AmountPaid>1</AmountPaid>
    <ContractID>sample string 2</ContractID>
    <ID>sample string 1</ID>
  </FeeMasterDto>
  <FeeMasterDto>
    <AmountIncurred>1</AmountIncurred>
    <AmountOldDebt>1</AmountOldDebt>
    <AmountOwed>1</AmountOwed>
    <AmountPaid>1</AmountPaid>
    <ContractID>sample string 2</ContractID>
    <ID>sample string 1</ID>
  </FeeMasterDto>
</ArrayOfFeeMasterDto>