GET api/AutoInvoice/Order/Status?fromDate={fromDate}&toDate={toDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fromDate

date

Required

toDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of OrderAutoInvoice
NameDescriptionTypeAdditional information
orderDocumentNo

integer

None.

orderNo

integer

None.

invoiceNo

string

None.

autoInvoiceStatus

integer

None.

documentType

integer

None.

transactionType

byte

None.

orderType

byte

None.

customerNo

integer

None.

name

string

None.

documentDate

date

None.

orderDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "orderDocumentNo": 1,
    "orderNo": 1,
    "invoiceNo": "sample string 1",
    "autoInvoiceStatus": 1,
    "documentType": 1,
    "transactionType": 64,
    "orderType": 64,
    "customerNo": 1,
    "name": "sample string 2",
    "documentDate": "2025-11-29T15:08:28.073845+01:00",
    "orderDate": "2025-11-29T15:08:28.073845+01:00"
  },
  {
    "orderDocumentNo": 1,
    "orderNo": 1,
    "invoiceNo": "sample string 1",
    "autoInvoiceStatus": 1,
    "documentType": 1,
    "transactionType": 64,
    "orderType": 64,
    "customerNo": 1,
    "name": "sample string 2",
    "documentDate": "2025-11-29T15:08:28.073845+01:00",
    "orderDate": "2025-11-29T15:08:28.073845+01:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrderAutoInvoice xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <OrderAutoInvoice>
    <orderDocumentNo>1</orderDocumentNo>
    <orderNo>1</orderNo>
    <invoiceNo>sample string 1</invoiceNo>
    <autoInvoiceStatus>1</autoInvoiceStatus>
    <documentType>1</documentType>
    <transactionType>64</transactionType>
    <orderType>64</orderType>
    <customerNo>1</customerNo>
    <name>sample string 2</name>
    <documentDate>2025-11-29T15:08:28.073845+01:00</documentDate>
    <orderDate>2025-11-29T15:08:28.073845+01:00</orderDate>
  </OrderAutoInvoice>
  <OrderAutoInvoice>
    <orderDocumentNo>1</orderDocumentNo>
    <orderNo>1</orderNo>
    <invoiceNo>sample string 1</invoiceNo>
    <autoInvoiceStatus>1</autoInvoiceStatus>
    <documentType>1</documentType>
    <transactionType>64</transactionType>
    <orderType>64</orderType>
    <customerNo>1</customerNo>
    <name>sample string 2</name>
    <documentDate>2025-11-29T15:08:28.073845+01:00</documentDate>
    <orderDate>2025-11-29T15:08:28.073845+01:00</orderDate>
  </OrderAutoInvoice>
</ArrayOfOrderAutoInvoice>