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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "07b82935-d5c5-48bb-a27f-d04c3516723d",
  "Status": "sample string 2"
}