GET api/AccountStatement/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

AccountStatementBL
NameDescriptionTypeAdditional information
AccountStatementId

integer

None.

OrderId

integer

None.

AccountName

string

None.

AccountDate

date

None.

AccountDescription

string

None.

AccountOpeningBalance

decimal number

None.

AccountDueAmount

decimal number

None.

AccountPrinciple

decimal number

None.

AccountInterest

decimal number

None.

AaccountClosingBalance

decimal number

None.

IsActive

boolean

None.

CreatedDate

date

None.

IsNeedsToDelete

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "AccountStatementId": 1,
  "OrderId": 1,
  "AccountName": "sample string 2",
  "AccountDate": "2026-05-03T10:36:57.0946618-07:00",
  "AccountDescription": "sample string 3",
  "AccountOpeningBalance": 1.0,
  "AccountDueAmount": 1.0,
  "AccountPrinciple": 1.0,
  "AccountInterest": 1.0,
  "AaccountClosingBalance": 1.0,
  "IsActive": true,
  "CreatedDate": "2026-05-03T10:36:57.0946618-07:00",
  "IsNeedsToDelete": true
}

application/xml, text/xml

Sample:
<AccountStatementBL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaybookAPI.Models">
  <AaccountClosingBalance>1</AaccountClosingBalance>
  <AccountDate>2026-05-03T10:36:57.0946618-07:00</AccountDate>
  <AccountDescription>sample string 3</AccountDescription>
  <AccountDueAmount>1</AccountDueAmount>
  <AccountInterest>1</AccountInterest>
  <AccountName>sample string 2</AccountName>
  <AccountOpeningBalance>1</AccountOpeningBalance>
  <AccountPrinciple>1</AccountPrinciple>
  <AccountStatementId>1</AccountStatementId>
  <CreatedDate>2026-05-03T10:36:57.0946618-07:00</CreatedDate>
  <IsActive>true</IsActive>
  <IsNeedsToDelete>true</IsNeedsToDelete>
  <OrderId>1</OrderId>
</AccountStatementBL>