GET Companies({CompanyId})/SalesInvoiceSummaries?filter={filter}

Returns Invoice Summaries for a Company with Filtering

Information:

Base URL:

https://api.covasoft.net/pointofsale

Example of a call would be:

https://api.covasoft.net/pointofsale/Companies({CompanyId})/SalesInvoiceSummaries?$filter=CustomerId eq guid'{CustomerId}'

Odata Filters

CustomerId eq guid'{CustomerId}'

PrintableId eq '{InvoiceNumber}'

ReceiptNumber eq '{ReceiptNumber}'

LocationId eq {LocationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CompanyId

The unique Company Id that was provided in your onboarding pacakage.

integer

Required

filter

The Odata filter applied to this call, see Odata filter section above

string

None.

Body Parameters

None.

Response Information

Resource Description

Invoice Summaries for a Company with Filtering

Collection of GetSalesInvoiceSummariesReturn
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

PrintableId

string

None.

ReceiptNumber

string

None.

InvoiceTotal

decimal number

None.

InvoiceType

string

None.

PaymentTypes

string

None.

CustomerId

globally unique identifier

None.

CustomerName

string

None.

LocationId

integer

None.

LocationName

string

None.

UserId

integer

None.

CreatedByUser

string

None.

CreatedDateUtc

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "ee1ef60b-d3e3-4caf-bed2-5605c7412e41",
    "PrintableId": "sample string 2",
    "ReceiptNumber": "sample string 3",
    "InvoiceTotal": 4.1,
    "InvoiceType": "sample string 5",
    "PaymentTypes": "sample string 6",
    "CustomerId": "dfc90a49-2591-4086-821e-741df5b1d8fc",
    "CustomerName": "sample string 7",
    "LocationId": 8,
    "LocationName": "sample string 9",
    "UserId": 10,
    "CreatedByUser": "sample string 11",
    "CreatedDateUtc": "2024-11-07T08:39:22.8721644+00:00"
  },
  {
    "Id": "ee1ef60b-d3e3-4caf-bed2-5605c7412e41",
    "PrintableId": "sample string 2",
    "ReceiptNumber": "sample string 3",
    "InvoiceTotal": 4.1,
    "InvoiceType": "sample string 5",
    "PaymentTypes": "sample string 6",
    "CustomerId": "dfc90a49-2591-4086-821e-741df5b1d8fc",
    "CustomerName": "sample string 7",
    "LocationId": 8,
    "LocationName": "sample string 9",
    "UserId": 10,
    "CreatedByUser": "sample string 11",
    "CreatedDateUtc": "2024-11-07T08:39:22.8721644+00:00"
  }
]