PUT

/v1/packing_list_items/:id

Bearer*

Body

idrequired
string

The ID of the packing list item to update.

skurequired
string

The SKU of the packing list item to update.

descriptionrequired
string

The description of the packing list item to update.

quantityrequired
number

The quantity of the packing list item to update.

packing_listrequired
string

The packing list of the packing list item to update.

arrivedrequired
boolean

The arrived of the packing list item to update.

Response

idrequired
string

The ID of the packing list item to update.

skurequired
string

The SKU of the packing list item to update.

descriptionrequired
string

The description of the packing list item to update.

quantityrequired
number

The quantity of the packing list item to update.

packing_listrequired
string

The packing list of the packing list item to update.

arrivedrequired
boolean

The arrived of the packing list item to update.

curl --location --request PUT 'https://api.stateset.com/v1/packing_list_items/:id' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": "1",
    "sku": "1",
    "description": "1",
    "quantity": 1,
    "packing_list": "1",
    "arrived": true
}'
{
    "id": "1",
    "sku": "1",
    "description": "1",
    "quantity": 1,
    "packing_list": "1",
    "arrived": true
}