需要 write_products 权限点。
更多权限点使用信息,请参考:
POST https://{handle}.myshopline.com/admin/openapi/v20250601/products/:product_id/variants.json
handle :店铺的唯一标识符,值为店铺域名的前缀。例如,域名为 open001.myshopline.com 的店铺,其 handleopen001
创建sku
路径参数
  • product_id string required
    商品id
请求头
  • Content-Type required
    字段值固定为application/json; charset=utf-8
  • Authorization string required
    资源的访问令牌。请参考 应用授权 获取访问令牌,然后将获取到的访问令牌以 Bearer 格式传入
    Example:
    Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
请求体
  • variantobject
    款式信息
  • barcode string
    条形码,限制255个字符
    Example: T0000001
  • compare_at_price string
    原价
    Example: 99
  • imageobject
    图片
  • alt string
    图片的alt信息,限制512个字符
    Example: This is a image alt
  • id string
    图片ID,注意:必须是主图中的图片
    Example: 5759070976424132652
  • src string
    对应的图片src链接,限制255个字符
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • inventory_policy string
    超卖策略,continue:允许,deny:不允许
    Example: deny
  • inventory_tracker boolean
    是否追踪库存,默认为不追踪
    Example: true
  • option1 string
    该款式对应的第一个选项的值,限制255个字符
    Example: Red
  • option2 string
    该款式对应的第二个选项的值,限制255个字符
    Example: L
  • option3 string
    该款式对应的第三个选项的值,限制255个字符
  • option4 string
    该款式对应的第四个选项的值,限制255个字符
  • option5 string
    该款式对应的第五个选项的值,限制255个字符
  • price string
    售价
    Example: 90
  • required_shipping boolean
    是否需要发货
    Example: true
  • sku string
    SKU码,长度不能超过255
    Example: S0000001
  • taxable boolean
    是否需要收税
    Example: true
  • weight string
    重量
    Example: 0.2
  • weight_unit string
    重量单位, g:克,kg:千克,lb:磅,oz:盎司,zh_kg:公斤
    Example: kg
响应
更多状态码信息请参考 HTTP 状态码

响应头
  • traceId
    traceId
响应体
  • variantobject
    variant信息
  • barcode string
    条形码
    Example: T000000001
  • compare_at_price string
    原价
    Example: 99
  • created_at string
    创建时间
    Example: 2021-09-02T14:11:54+00:00
  • id string
    id
    Example: 18057039439794751459380282
  • imageobject
    图片
  • alt string
    图片alt
    Example: alt
  • id string
    图片ID
    Example: 5785060242207917075
  • src string
    图片src
    Example: https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png
  • inventory_item_id string
    库存对象ID
    Example: 5985060242375689228
  • inventory_policy string
    是否允许超卖
    Example: deny
  • inventory_quantity integer
    所有地点的库存数量汇总
    Example: 99
  • inventory_tracker boolean
    是否追踪库存
    Example: true
  • option1 string
    属性值1
    Example: Red
  • option2 string
    属性值2
    Example: L
  • option3 string
    属性值3
  • option4 string
    属性值4
  • option5 string
    属性值5
  • price string
    售价
    Example: 90
  • product_id string
    商品id
    Example: 16057039432335097907370282
  • required_shipping boolean
    是否需要发货
    Example: true
  • sku string
    sku码
    Example: S00000001
  • taxable boolean
    是否需要收税
    Example: true
  • updated_at string
    更新时间
    Example: 2021-09-02T14:11:54+00:00
  • weight string
    重量
    Example: 0.2
  • weight_unit string
    重量单位
    Example: kg
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20250601

ParamOptions

path required
header required

Body

required
{
  "variant": {
    "barcode": "T0000001",
    "compare_at_price": "99",
    "image": {
      "alt": "This is a image alt",
      "id": "5759070976424132652",
      "src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
    },
    "inventory_policy": "deny",
    "inventory_tracker": true,
    "option1": "Red",
    "option2": "L",
    "option3": "",
    "option4": "",
    "option5": "",
    "price": "90",
    "required_shipping": true,
    "sku": "S0000001",
    "taxable": true,
    "weight": "0.2",
    "weight_unit": "kg"
  }
}

Language

curl --request POST \
--url https://openapiceshidianpu.myshopline.com/admin/openapi/v20250601/products/product_id/variants.json \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw' \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'accept: application/json' \
--data '
{
"variant": {
"barcode": "T0000001",
"compare_at_price": "99",
"image": {
"alt": "This is a image alt",
"id": "5759070976424132652",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
},
"inventory_policy": "deny",
"inventory_tracker": true,
"option1": "Red",
"option2": "L",
"option3": "",
"option4": "",
"option5": "",
"price": "90",
"required_shipping": true,
"sku": "S0000001",
"taxable": true,
"weight": "0.2",
"weight_unit": "kg"
}
}
'
Examples
添加款式
Request
{
"variant": {
"barcode": "T0000001",
"compare_at_price": "99",
"image": {
"alt": "This is a image alt",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
},
"inventory_policy": "continue",
"inventory_tracker": "true",
"option1": "S",
"option2": "White",
"price": "90",
"required_shipping": "true",
"sku": "S0000001",
"taxable": "true",
"weight": "0.5",
"weight_unit": "kg"
}
}
Response
{
"variant": {
"barcode": "T0000001",
"compare_at_price": "99.00",
"created_at": "2023-08-29T15:32:54+08:00",
"id": "18060895634402500988513144",
"image": {
"alt": "This is a image alt",
"id": "6089563432963689533",
"src": "https://img.myshopline.com/image/official/e46e6189dd5641a3b179444cacdcdd2a.png"
},
"inventory_item_id": "6089563439612587791",
"inventory_policy": "continue",
"inventory_tracker": true,
"option1": "S",
"option2": "White",
"price": "90.00",
"product_id": "16060895302856191591063144",
"required_shipping": true,
"sku": "S0000001",
"taxable": true,
"updated_at": "2023-08-29T15:32:54+08:00",
"weight": "0.50",
"weight_unit": "kg"
}
}
这篇文章对你有帮助吗?

Error loading component.

Error loading component.