Skip to main content
POST
/
open-api
/
v1.0
/
fulfillments
Create a fulfillment for an order
curl --request POST \
  --url https://api.fourthwall.com/open-api/v1.0/fulfillments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "items": [
    {
      "variantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "quantity": 2
    }
  ],
  "shippingLabel": {
    "trackingNumber": "<string>",
    "trackingCompany": "USPS"
  }
}
'
{
"fulfillmentId": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
orderId
string<uuid>
required
items
Fulfillment Item · object[]
required
Minimum array length: 1
shippingLabel
Shipping Label · object
required

Response

Created

fulfillmentId
string
required