Skip to main content
PATCH
/
v1
/
fulfillments
/
{id}
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/fulfillments/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fulfillment": {
    "trackings": [
      {
        "number": "1Z879E930346834440"
      }
    ]
  }
}
'
{
  "id": "f3dfe9be-3f60-4e6d-89a7-314cba76e14d",
  "object": "fulfillment",
  "notifications_enabled": false,
  "number": "0000-F",
  "shipment_status": "unshippable",
  "g_weight": 0,
  "order": "6725f6e2-e080-43c6-80d4-e30fbcb5a850",
  "created_at": 1767909705,
  "updated_at": 1767909705
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
fulfillment
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

notifications_enabled
boolean

Whether or not notifications should be sent to customers when fulfillments are created and updated.

shipment_status
string

The current shipment status of this fulfillment – one of unshippable, unshipped, shipped, or delivered.

metadata
object

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

g_weight
number

Total weight of the entire fulfillment in grams.

number
string

The unique identifier for this fulfillment that is auto generated based on this account's order protocol.

order

Expandable – The associated order ID.

fulfillment_items

Expandable – Property not returned unless expanded.

trackings

Expandable – Property not returned unless expanded.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.