POST v1/CovaOrderPayment
This Call Marks a Sales Order as PaidWaitingForCompletion at the Location specified within the Company
Information:
Base URL:
https://api.covasoft.net/covaorderintake
Example of a call would be:
https://api.covasoft.net/covaorderintake/v1/CovaOrderPayment
Request Information
URI Parameters
None.
Body Parameters
Details needed for the Cova Order Payment intake
CovaSalesOrderPaymentPost| Name | Description | Type | Additional information | 
|---|---|---|---|
| SaleID | The OrderId submitted/returned when creating an order | globally unique identifier | None. | 
| CompanyId | integer | None. | |
| TrackingNumber | Required. Delivery identifier: driver name/phone/id, shipping\mailing tracking number. If not applicable, supply some sort of order reference (your internal id, perhaps) or "N/A" | string | None. | 
| Payments | Collection of Payment | None. | 
Request Formats
application/json, text/json
{
  "SaleID": "f7174d70-9bc6-44e5-a564-1e78d34841b0",
  "CompanyId": 2,
  "TrackingNumber": "sample string 3",
  "Payments": [
    {
      "PreAuthorizationToken": "sample string 1",
      "Amount": 2.1,
      "TimeTakenUtc": "2025-10-31T11:20:36.8412986+00:00",
      "Last4Digits": "sample string 4"
    },
    {
      "PreAuthorizationToken": "sample string 1",
      "Amount": 2.1,
      "TimeTakenUtc": "2025-10-31T11:20:36.8412986+00:00",
      "Last4Digits": "sample string 4"
    }
  ]
}
        Response Information
Resource Description
CovaSalesOrderPaymentPost| Name | Description | Type | Additional information | 
|---|---|---|---|
| SaleID | The OrderId submitted/returned when creating an order | globally unique identifier | None. | 
| CompanyId | integer | None. | |
| TrackingNumber | Required. Delivery identifier: driver name/phone/id, shipping\mailing tracking number. If not applicable, supply some sort of order reference (your internal id, perhaps) or "N/A" | string | None. | 
| Payments | Collection of Payment | None. | 
Response Formats
application/json, text/json
{
  "SaleID": "4b9eaf02-fec0-4989-8e61-7b191556385d",
  "CompanyId": 2,
  "TrackingNumber": "sample string 3",
  "Payments": [
    {
      "PreAuthorizationToken": "sample string 1",
      "Amount": 2.1,
      "TimeTakenUtc": "2025-10-31T11:20:36.8569036+00:00",
      "Last4Digits": "sample string 4"
    },
    {
      "PreAuthorizationToken": "sample string 1",
      "Amount": 2.1,
      "TimeTakenUtc": "2025-10-31T11:20:36.8569036+00:00",
      "Last4Digits": "sample string 4"
    }
  ]
}