PUT Companies({CompanyId})/OrderStatus({SalesOrderId}
This Call updates the fulfillment status of the Sales Order specified and at the Location specified within the Company
Information:
Base URL:
https://api.covasoft.net/pointofsale
Example of a call would be:
https://api.covasoft.net/pointofsale/Companies({CompanyId})/OrderStatus({SalesOrderId})
Valid FulFillment Statuses include the following:
OrderPlaced
InProgress
ReadyForPickup
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId |
Company Id from your onboarding package |
integer |
Required |
| SalesOrderId |
Sales Order Guid Id that you want to Complete |
globally unique identifier |
Required |
Body Parameters
CovaSalesOrderFulfillementStatusPost| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Status": "sample string 1"
}
Response Information
Resource Description
The updated Fulfillment Status of the Sales Order Specified
CovaSalesOrderFulfillementStatusReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Status | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "031bd6dc-274b-44bf-ae0c-09483945a074",
"Status": "sample string 2"
}