GET Invoice/GetInvoiceListByLocationIDByDate?LocationID={LocationID}&StartDate={StartDate}&EndDate={EndDate}&VoidOnly={VoidOnly}&CustomerID={CustomerID}

Returns invoice data.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
LocationID

Location ID to return invoices for.

string

Required

StartDate

Start date of invoices to return. Format MM-dd-yyyy.

string

Required

EndDate

End date of invoices to return. Format MM-dd-yyyy.

string

Required

VoidOnly

True or False to only return voided invoices. Default is False. (optional)

boolean

Default value is False

CustomerID

Customer ID to return invoices for. (optional)

string

Default value is string.Empty

Body Parameters

Response Information

Resource Description

Returns invoice data.

AgvInvoice
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Invoices.

string
InvoiceRecords

JSON dictionary of InvoiceRecords.

Collection of clsAPIInvoice

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "2",
  "InvoiceRecords": [
    {
      "InvoiceDate": "sample string 1",
      "InvoiceLocation": "sample string 2",
      "InvoiceNumber": "sample string 3",
      "InvoiceRecordHeaderDetails": null,
      "InvoiceRecordSplitDetails": [],
      "InvoiceRecordLineItemDetails": [],
      "InvoiceTaxCodeDetails": [],
      "InvoiceBooksDetails": [],
      "InvoiceBlendsDetails": [],
      "InvoiceDelivsDetails": [],
      "InvoiceEnergyDetails": [],
      "InvoiceApplicatorDetails": []
    },
    {
      "InvoiceDate": "sample string 1",
      "InvoiceLocation": "sample string 2",
      "InvoiceNumber": "sample string 3",
      "InvoiceRecordHeaderDetails": null,
      "InvoiceRecordSplitDetails": [],
      "InvoiceRecordLineItemDetails": [],
      "InvoiceTaxCodeDetails": [],
      "InvoiceBooksDetails": [],
      "InvoiceBlendsDetails": [],
      "InvoiceDelivsDetails": [],
      "InvoiceEnergyDetails": [],
      "InvoiceApplicatorDetails": []
    }
  ]
}

application/xml

Sample:

An exception has occurred while using the formatter 'XmlMediaTypeFormatter' to generate sample for media type 'application/xml'. Exception message: Cannot serialize the DataTable. DataTable name is not set.

text/xml

Sample:

An exception has occurred while using the formatter 'XmlMediaTypeFormatter' to generate sample for media type 'text/xml'. Exception message: Cannot serialize the DataTable. DataTable name is not set.