POST
/
sale_order
/
status
/
{saleOrderIdentifier}
curl --request POST \
  --url http://api.salesjourney.io/sale_order/status/{saleOrderIdentifier} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "BILLED"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

saleOrderIdentifier
string
required

Body

application/json
status
enum<string>
Available options:
BILLED,
IN_TRANSIT,
DELIVERED

Response

200 - application/json
Successful response
success
boolean
message
string