GET api/Customers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ChartOfAccounts
NameDescriptionTypeAdditional information
AccountNo

integer

None.

Title

string

None.

CityCode

integer

None.

OpeningBalance

decimal number

None.

OpeningBalanceDate

date

None.

StopPayment

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountNo": 1,
    "Title": "sample string 2",
    "CityCode": 3,
    "OpeningBalance": 4.0,
    "OpeningBalanceDate": "2026-03-06T19:29:05.5815031+05:00",
    "StopPayment": 6.1
  },
  {
    "AccountNo": 1,
    "Title": "sample string 2",
    "CityCode": 3,
    "OpeningBalance": 4.0,
    "OpeningBalanceDate": "2026-03-06T19:29:05.5815031+05:00",
    "StopPayment": 6.1
  }
]

text/html

Sample:
[{"AccountNo":1,"Title":"sample string 2","CityCode":3,"OpeningBalance":4.0,"OpeningBalanceDate":"2026-03-06T19:29:05.5815031+05:00","StopPayment":6.1},{"AccountNo":1,"Title":"sample string 2","CityCode":3,"OpeningBalance":4.0,"OpeningBalanceDate":"2026-03-06T19:29:05.5815031+05:00","StopPayment":6.1}]

application/xml, text/xml

Sample:
<ArrayOfChartOfAccounts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveStock.WebApi.Models">
  <ChartOfAccounts>
    <AccountNo>1</AccountNo>
    <CityCode>3</CityCode>
    <OpeningBalance>4</OpeningBalance>
    <OpeningBalanceDate>2026-03-06T19:29:05.5815031+05:00</OpeningBalanceDate>
    <StopPayment>6.1</StopPayment>
    <Title>sample string 2</Title>
  </ChartOfAccounts>
  <ChartOfAccounts>
    <AccountNo>1</AccountNo>
    <CityCode>3</CityCode>
    <OpeningBalance>4</OpeningBalance>
    <OpeningBalanceDate>2026-03-06T19:29:05.5815031+05:00</OpeningBalanceDate>
    <StopPayment>6.1</StopPayment>
    <Title>sample string 2</Title>
  </ChartOfAccounts>
</ArrayOfChartOfAccounts>