POST
/
v1
/
orders
/
{sourceOrderId}
/
fulfillments
curl --request POST \
  --url https://api.production.orderprotection.com/v1/orders/{sourceOrderId}/fulfillments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sourceItemIds": [
    {
      "sourceItemId": "1478",
      "quantity": 1
    },
    {
      "sourceItemId": "1479",
      "quantity": 2
    }
  ],
  "fulfillmentStatus": "Fulfilled",
  "trackingCompany": "FedEx",
  "trackingNumber": [
    "AB0303456"
  ],
  "trackingUrl": [
    "https://example-follow-shipment.com/AB0303456"
  ],
  "sourceFulfillmentId": "fulfillment-123"
}'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

sourceOrderId
string
required

Body

application/json
sourceItemIds
object[]
required

Array of order items objects with the sourceItemId and quantity

Example:
[
  { "sourceItemId": "1478", "quantity": 1 },
  { "sourceItemId": "1479", "quantity": 2 }
]
fulfillmentStatus
enum<string>
required

Fulfillment Status

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"

sourceFulfillmentId
string
required

Source Fulfillment ID. This will allow you to update your fulfillment using your internal fulfillment ID

Example:

"fulfillment-123"

trackingCompany
string

Tracking Company

Example:

"FedEx"

trackingNumber
string[]

Tracking Number

Example:
["AB0303456"]
trackingUrl
string[]

Tracking URL

Example:
[
  "https://example-follow-shipment.com/AB0303456"
]

Response

201
application/json
The fulfillment has been successfully created.
status
string
required
Example:

"ok"