GET api/BankReport/GetFFR1DataBranchWise?companyId={companyId}&date={date}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

integer

Required

date

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FFRBranch
NameDescriptionTypeAdditional information
BranchCode

integer

None.

BranchName

string

None.

Purchase

decimal number

None.

DomesticSales

decimal number

None.

ExportSales

decimal number

None.

Inventories

decimal number

None.

Receivables

decimal number

None.

OtherCA

decimal number

None.

BankBorrow

decimal number

None.

SundryCreditors

decimal number

None.

OtherCL

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BranchCode": 1,
    "BranchName": "sample string 2",
    "Purchase": 3.0,
    "DomesticSales": 4.0,
    "ExportSales": 5.0,
    "Inventories": 6.0,
    "Receivables": 7.0,
    "OtherCA": 8.0,
    "BankBorrow": 9.0,
    "SundryCreditors": 10.0,
    "OtherCL": 11.0
  },
  {
    "BranchCode": 1,
    "BranchName": "sample string 2",
    "Purchase": 3.0,
    "DomesticSales": 4.0,
    "ExportSales": 5.0,
    "Inventories": 6.0,
    "Receivables": 7.0,
    "OtherCA": 8.0,
    "BankBorrow": 9.0,
    "SundryCreditors": 10.0,
    "OtherCL": 11.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfFFRBranch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <FFRBranch>
    <BankBorrow>9</BankBorrow>
    <BranchCode>1</BranchCode>
    <BranchName>sample string 2</BranchName>
    <DomesticSales>4</DomesticSales>
    <ExportSales>5</ExportSales>
    <Inventories>6</Inventories>
    <OtherCA>8</OtherCA>
    <OtherCL>11</OtherCL>
    <Purchase>3</Purchase>
    <Receivables>7</Receivables>
    <SundryCreditors>10</SundryCreditors>
  </FFRBranch>
  <FFRBranch>
    <BankBorrow>9</BankBorrow>
    <BranchCode>1</BranchCode>
    <BranchName>sample string 2</BranchName>
    <DomesticSales>4</DomesticSales>
    <ExportSales>5</ExportSales>
    <Inventories>6</Inventories>
    <OtherCA>8</OtherCA>
    <OtherCL>11</OtherCL>
    <Purchase>3</Purchase>
    <Receivables>7</Receivables>
    <SundryCreditors>10</SundryCreditors>
  </FFRBranch>
</ArrayOfFFRBranch>