GET api/invoice/allYr/{Transtype}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Transtype

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Invoice
NameDescriptionTypeAdditional information
ShopName

string

None.

TotalClosingBalance

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShopName": "sample string 1",
    "TotalClosingBalance": "sample string 2"
  },
  {
    "ShopName": "sample string 1",
    "TotalClosingBalance": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInvoice xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Invoice>
    <ShopName>sample string 1</ShopName>
    <TotalClosingBalance>sample string 2</TotalClosingBalance>
  </Invoice>
  <Invoice>
    <ShopName>sample string 1</ShopName>
    <TotalClosingBalance>sample string 2</TotalClosingBalance>
  </Invoice>
</ArrayOfInvoice>