PUT
/
v1
/
orders
/
{sourceOrderId}
/
fulfillments
/
{sourceFulfillmentId}
curl --request PUT \
  --url https://api.production.orderprotection.com/v1/orders/{sourceOrderId}/fulfillments/{sourceFulfillmentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "fulfilled"
}'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sourceFulfillmentId
string
required
sourceOrderId
string
required

Body

application/json
status
enum<string>
required

Fulfillment Status, update the fulfillment status to let us know if the fulfillment is in progress, fulfilled, or canceled

Available options:
DELIVERED,
FULFILLED,
UNFULFILLED,
PARTIALLY_FULFILLED,
AWAITING_SHIPMENT,
SCHEDULED,
ON_HOLD,
ATTEMPTED_DELIVERY,
CARRIER_PICKED_UP,
CONFIRMED,
DELAYED,
FAILURE,
NOT_DELIVERED,
IN_TRANSIT,
LABEL_PRINTED,
LABEL_PURCHASED,
OUT_FOR_DELIVERY,
PICKED_UP,
READY_FOR_PICKUP
Example:

"fulfilled"

Response

200
application/json
The fulfillment has been successfully updated.
status
string
required
Example:

"ok"