Path parameters
-
id
integer(int64) Required Numeric ID of the instance
Minimum value is
1
.
Body
Required
-
channelVariantId
integer(int32) Required Channel variant
-
costPrice
number | null Cost price
-
createdAt
string(date-time) Created at
-
grams
number(float) | null Grams
-
id
integer(int32) Id
-
inventoryPolicy
string | null Inventory policy
Values are
ignore
,deny
,continue
,dropship
, ortrack
. productPayload
object | null | array | boolean | integer | number | string Product payload
-
sku
string | null Sku
-
updatedAt
string(date-time) Updated at
variantPayload
object | null | array | boolean | integer | number | string Variant payload
PUT
/channel-variant-imports/{id}.json
curl \
--request PUT 'http://api.example.com/v1/channel-variant-imports/{id}.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"channelVariantId":42,"costPrice":42.0,"createdAt":"2025-05-04T09:42:00Z","grams":42.0,"id":42,"inventoryPolicy":"ignore","productPayload":{},"sku":"string","updatedAt":"2025-05-04T09:42:00Z","variantPayload":{}}'
Request examples
{
"channelVariantId": 42,
"costPrice": 42.0,
"createdAt": "2025-05-04T09:42:00Z",
"grams": 42.0,
"id": 42,
"inventoryPolicy": "ignore",
"productPayload": {},
"sku": "string",
"updatedAt": "2025-05-04T09:42:00Z",
"variantPayload": {}
}