GET v1/companies/{CompanyId}/entities/{LocationId}/integrators/{IntegratorId}/Orders/{OrderId}?EntityId={EntityId}
Get order details by order Id
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}/Orders/{OrderId}
Usage:
Use this endpoint to get the order details of an order for a specific integrator.
NOTE CURRENTLY IntegratorId PARAMETER IS IGNORED, AND ALL ORDERS RETURNED. BE ADVISED THAT THIS WILL CHANGE AT A FUTURE DATE
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| CompanyId | The company the order was created at. | integer | Required | 
| EntityId | The location the order was created at. | integer | Required | 
| IntegratorId | The integrator who created the order. | globally unique identifier | Required | 
| OrderId | The Id of the order. | globally unique identifier | Required | 
| LocationId | string | None. | 
Body Parameters
None.
Response Information
Resource Description
CovaSalesOrderGetOrderDetailsByIdReturn| Name | Description | Type | Additional information | 
|---|---|---|---|
| OrderId | globally unique identifier | None. | |
| OrderNumber | string | None. | |
| InvoiceId | globally unique identifier | None. | |
| Status | string | None. | |
| LocationId | integer | None. | |
| InvoiceNumber | string | None. | |
| CustomerId | globally unique identifier | None. | |
| Products | Collection of CovaSalesOrderGetOrderDetailsByIdProduct | None. | |
| Payments | Collection of CovaSalesOrderGetOrderDetailsByIdPayment | None. | 
Response Formats
application/json, text/json
            Sample:
{
  "OrderId": "0d440021-3fe3-41e6-bc99-5aa47c64d8ed",
  "OrderNumber": "sample string 2",
  "InvoiceId": "836055c0-33ea-4a89-9c98-b95750932e32",
  "Status": "sample string 4",
  "LocationId": 5,
  "InvoiceNumber": "sample string 6",
  "CustomerId": "1d6bd5f4-9194-4b20-81c8-1b71d06e1ee3",
  "Products": [
    {
      "ProductId": "ca5bb858-8b86-44f0-87c8-53760bb24d0e",
      "Quantity": 2.0,
      "AmountBeforeTax": 3.0,
      "Taxes": {
        "Tax": 1.0,
        "TaxDetails": [
          {
            "TaxId": "sample string 1",
            "Tax": 2.0,
            "TaxName": "sample string 3"
          },
          {
            "TaxId": "sample string 1",
            "Tax": 2.0,
            "TaxName": "sample string 3"
          }
        ]
      }
    },
    {
      "ProductId": "ca5bb858-8b86-44f0-87c8-53760bb24d0e",
      "Quantity": 2.0,
      "AmountBeforeTax": 3.0,
      "Taxes": {
        "Tax": 1.0,
        "TaxDetails": [
          {
            "TaxId": "sample string 1",
            "Tax": 2.0,
            "TaxName": "sample string 3"
          },
          {
            "TaxId": "sample string 1",
            "Tax": 2.0,
            "TaxName": "sample string 3"
          }
        ]
      }
    }
  ],
  "Payments": [
    {
      "Last4Digits": "sample string 1",
      "CustomerAccountId": "sample string 2",
      "PaymentMethodId": 3,
      "PaymentMethodName": "sample string 4",
      "Amount": 5.1,
      "TransactionDateUtc": "2025-10-31T04:32:10.1450117+00:00"
    },
    {
      "Last4Digits": "sample string 1",
      "CustomerAccountId": "sample string 2",
      "PaymentMethodId": 3,
      "PaymentMethodName": "sample string 4",
      "Amount": 5.1,
      "TransactionDateUtc": "2025-10-31T04:32:10.1450117+00:00"
    }
  ]
}