GET v1/companies/{CompanyId}/entities/{LocationId}/integrators/{IntegratorId}/RefundInvoices?EntityId={EntityId}&DateSince={DateSince}&PaymentTypeName={PaymentTypeName}
Get all refund invoices by company and location, originating from an order created by the integrator, since a date.
Information:
Base URL:
https://api.covasoft.net/covaorderintake
Example of a call would be:
https://api.covasoft.net/covaorderintake/v1/companies/{CompanyId}/entities/{LocationId}/integrators/{IntegratorId}/RefundInvoices?DateSince=2020-11-05T00:00:00.00Z&PaymentTypes=Store Credit
Usage:
Use this endpoint to get all refund invoices created in a date range, by a location, originating with a specific integrator.
NOTE CURRENTLY IntegratorId PARAMETER IS IGNORED, AND ALL REFUNDS RETURNED. BE ADVISED THAT THIS WILL CHANGE AT A FUTURE DATE
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| CompanyId | The company the refund was created at. | integer | Required | 
| EntityId | The location the refund was created at. | integer | Required | 
| IntegratorId | The integrator who created the originating order. **CURRENTLY THIS PARAMETER IS IGNORED, AND ALL REFUNDS RETURNED. BE ADVISED THAT THIS WILL CHANGE AT A FUTURE DATE. | globally unique identifier | Required | 
| DateSince | UTC date from date until now, to show refunds. | date | Required | 
| PaymentTypeName | Optional param to filter results on payment type names. | string | None. | 
| LocationId | string | None. | 
Body Parameters
None.
Response Information
Resource Description
Collection of CovaSalesOrderGetInvoicesForRefundedOrdersReturn| Name | Description | Type | Additional information | 
|---|---|---|---|
| InvoiceId | globally unique identifier | None. | |
| InvoiceNumber | string | None. | |
| OrderNumber | string | None. | |
| Total | decimal number | None. | |
| Type | string | None. | |
| PaymentTypes | string | None. | |
| CustomerID | globally unique identifier | None. | |
| CreatedDateUtc | date | None. | 
Response Formats
application/json, text/json
[
  {
    "InvoiceId": "9524145b-96f6-4dbc-bcb8-c8d55d243cf4",
    "InvoiceNumber": "sample string 2",
    "OrderNumber": "sample string 3",
    "Total": 4.0,
    "Type": "sample string 5",
    "PaymentTypes": "sample string 6",
    "CustomerID": "726bea12-fbea-4467-a1db-db9230438a9e",
    "CreatedDateUtc": "2025-10-31T06:29:12.4480854+00:00"
  },
  {
    "InvoiceId": "9524145b-96f6-4dbc-bcb8-c8d55d243cf4",
    "InvoiceNumber": "sample string 2",
    "OrderNumber": "sample string 3",
    "Total": 4.0,
    "Type": "sample string 5",
    "PaymentTypes": "sample string 6",
    "CustomerID": "726bea12-fbea-4467-a1db-db9230438a9e",
    "CreatedDateUtc": "2025-10-31T06:29:12.4480854+00:00"
  }
]