GET api/ReportCustomerStatementComplete/{DB}/{Customerid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

Customerid

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustStmntJsonOutputData
NameDescriptionTypeAdditional information
Report_Date

date

None.

DocNo

string

None.

Debit

decimal number

None.

Credit

decimal number

None.

Balance

decimal number

None.

HdrCustomerName

string

None.

HdrCustomerAddress

string

None.

HdrTelephone

string

None.

HdrtotalBalance

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Report_Date": "2026-04-21T14:42:54.2015056+01:00",
    "DocNo": "sample string 2",
    "Debit": 3.0,
    "Credit": 4.0,
    "Balance": 5.0,
    "HdrCustomerName": "sample string 6",
    "HdrCustomerAddress": "sample string 7",
    "HdrTelephone": "sample string 8",
    "HdrtotalBalance": 9.0
  },
  {
    "Report_Date": "2026-04-21T14:42:54.2015056+01:00",
    "DocNo": "sample string 2",
    "Debit": 3.0,
    "Credit": 4.0,
    "Balance": 5.0,
    "HdrCustomerName": "sample string 6",
    "HdrCustomerAddress": "sample string 7",
    "HdrTelephone": "sample string 8",
    "HdrtotalBalance": 9.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustStmntJsonOutputData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <CustStmntJsonOutputData>
    <Balance>5</Balance>
    <Credit>4</Credit>
    <Debit>3</Debit>
    <DocNo>sample string 2</DocNo>
    <HdrCustomerAddress>sample string 7</HdrCustomerAddress>
    <HdrCustomerName>sample string 6</HdrCustomerName>
    <HdrTelephone>sample string 8</HdrTelephone>
    <HdrtotalBalance>9</HdrtotalBalance>
    <Report_Date>2026-04-21T14:42:54.2015056+01:00</Report_Date>
  </CustStmntJsonOutputData>
  <CustStmntJsonOutputData>
    <Balance>5</Balance>
    <Credit>4</Credit>
    <Debit>3</Debit>
    <DocNo>sample string 2</DocNo>
    <HdrCustomerAddress>sample string 7</HdrCustomerAddress>
    <HdrCustomerName>sample string 6</HdrCustomerName>
    <HdrTelephone>sample string 8</HdrTelephone>
    <HdrtotalBalance>9</HdrtotalBalance>
    <Report_Date>2026-04-21T14:42:54.2015056+01:00</Report_Date>
  </CustStmntJsonOutputData>
</ArrayOfCustStmntJsonOutputData>