Path parameters
-
id
integer(int64) Required Numeric ID of the instance
Minimum value is
1
.
Body
Required
-
createdAt
string(date-time) Created at
-
distanceUnit
string | null Required Distance unit
Values are
in
orcm
. Default value isin
. -
id
integer(int32) Id
-
packingDepth
number | null Required Packing depth
Default value is
2.4
. -
packingHeight
number | null Required Packing height
Default value is
13.3
. -
packingWidth
number | null Required Packing width
Default value is
11.5
. -
source
string | null Required Source
Values are
import
orinternal
. Default value isinternal
. -
updatedAt
string(date-time) Updated at
-
variantId
integer(int32) Required Variant
-
weight
number(float) | null Required Weight
Default value is
0
. -
weightUnit
string | null Required Weight unit
Values are
g
,kg
,oz
, orlb
. Default value isg
.
PUT
/variant-parcels/{id}.json
curl \
--request PUT 'http://api.example.com/v1/variant-parcels/{id}.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"createdAt":"2025-05-04T09:42:00Z","distanceUnit":"in","id":42,"packingDepth":2.4,"packingHeight":13.3,"packingWidth":11.5,"source":"internal","tags":[],"updatedAt":"2025-05-04T09:42:00Z","variantId":42,"weight":0,"weightUnit":"g"}'
Request examples
{
"createdAt": "2025-05-04T09:42:00Z",
"distanceUnit": "in",
"id": 42,
"packingDepth": 2.4,
"packingHeight": 13.3,
"packingWidth": 11.5,
"source": "internal",
"tags": [],
"updatedAt": "2025-05-04T09:42:00Z",
"variantId": 42,
"weight": 0,
"weightUnit": "g"
}