GET api/Ledger?Zll_Franchisee_id={Zll_Franchisee_id}&FromDate={FromDate}&ToDate={ToDate}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
Zll_Franchisee_id
No documentation available.

Define this parameter in the request URI.

FromDate
No documentation available.

Define this parameter in the request URI.

ToDate
No documentation available.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "TransactionDetails": [
    {
      "Trans_Type": "sample string 1",
      "Trans_Id": "sample string 2",
      "Trans_Date": "sample string 3",
      "Trans_Desc": "sample string 4",
      "Trans_Amount": "sample string 5",
      "Indent_Status": "sample string 6"
    },
    {
      "Trans_Type": "sample string 1",
      "Trans_Id": "sample string 2",
      "Trans_Date": "sample string 3",
      "Trans_Desc": "sample string 4",
      "Trans_Amount": "sample string 5",
      "Indent_Status": "sample string 6"
    },
    {
      "Trans_Type": "sample string 1",
      "Trans_Id": "sample string 2",
      "Trans_Date": "sample string 3",
      "Trans_Desc": "sample string 4",
      "Trans_Amount": "sample string 5",
      "Indent_Status": "sample string 6"
    }
  ],
  "old_Royalty_Opening_Balance": 1.0,
  "old_Royalty_Closing_Balance": 2.0,
  "opening_Balance": 3.0,
  "total_Indent": 4.0,
  "total_Receipt": 5.0,
  "closing_Balance": 6.0,
  "total_Closing_Balance": 7.0
}

application/xml, text/xml

Sample:
<LedgerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MLZS_EP_SYNC.Models">
  <TransactionDetails>
    <TransactionDetails>
      <Indent_Status>sample string 6</Indent_Status>
      <Trans_Amount>sample string 5</Trans_Amount>
      <Trans_Date>sample string 3</Trans_Date>
      <Trans_Desc>sample string 4</Trans_Desc>
      <Trans_Id>sample string 2</Trans_Id>
      <Trans_Type>sample string 1</Trans_Type>
    </TransactionDetails>
    <TransactionDetails>
      <Indent_Status>sample string 6</Indent_Status>
      <Trans_Amount>sample string 5</Trans_Amount>
      <Trans_Date>sample string 3</Trans_Date>
      <Trans_Desc>sample string 4</Trans_Desc>
      <Trans_Id>sample string 2</Trans_Id>
      <Trans_Type>sample string 1</Trans_Type>
    </TransactionDetails>
    <TransactionDetails>
      <Indent_Status>sample string 6</Indent_Status>
      <Trans_Amount>sample string 5</Trans_Amount>
      <Trans_Date>sample string 3</Trans_Date>
      <Trans_Desc>sample string 4</Trans_Desc>
      <Trans_Id>sample string 2</Trans_Id>
      <Trans_Type>sample string 1</Trans_Type>
    </TransactionDetails>
  </TransactionDetails>
  <closing_Balance>6</closing_Balance>
  <old_Royalty_Closing_Balance>2</old_Royalty_Closing_Balance>
  <old_Royalty_Opening_Balance>1</old_Royalty_Opening_Balance>
  <opening_Balance>3</opening_Balance>
  <total_Closing_Balance>7</total_Closing_Balance>
  <total_Indent>4</total_Indent>
  <total_Receipt>5</total_Receipt>
</LedgerModel>