GET api/InvoiceLayoutCheck?DB={DB}&InvoiceID={InvoiceID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

InvoiceID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InvoiceLayout
NameDescriptionTypeAdditional information
Company_Name

string

None.

Invoice_Layout

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Company_Name": "sample string 1",
    "Invoice_Layout": "sample string 2"
  },
  {
    "Company_Name": "sample string 1",
    "Invoice_Layout": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInvoiceLayout xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <InvoiceLayout>
    <Company_Name>sample string 1</Company_Name>
    <Invoice_Layout>sample string 2</Invoice_Layout>
  </InvoiceLayout>
  <InvoiceLayout>
    <Company_Name>sample string 1</Company_Name>
    <Invoice_Layout>sample string 2</Invoice_Layout>
  </InvoiceLayout>
</ArrayOfInvoiceLayout>