POST api/Customers/HandleGetInvoicesByDates

Receove request to get invoice

Request Information

URI Parameters

None.

Body Parameters

InvoiceSearch
NameDescriptionTypeAdditional information
UserName

string

None.

Salt

integer

None.

Digest

string

None.

ValidKey

integer

None.

FromDate

date

None.

ToDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Salt": 2,
  "Digest": "sample string 3",
  "ValidKey": 4,
  "FromDate": "2025-04-26T07:45:40.3424109+00:00",
  "ToDate": "2025-04-26T07:45:40.3424109+00:00"
}

application/xml, text/xml

Sample:
<InvoiceSearch xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UserName>sample string 1</UserName>
  <Salt>2</Salt>
  <Digest>sample string 3</Digest>
  <ValidKey>4</ValidKey>
  <FromDate>2025-04-26T07:45:40.3424109+00:00</FromDate>
  <ToDate>2025-04-26T07:45:40.3424109+00:00</ToDate>
</InvoiceSearch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

returns invoice json

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string>sample string 1</string>