版本:202201
更新商品图片
PUT/openapi/2022-01/products/:product_id/images/:image_id
通过商品图片 ID 更新指定商品图片的详情。
请求
Path参数
product_id string必填
商品 ID。
image_id string必填
图片 ID。
- application/json
- 请求体
- 示例
请求体
image object
positionint32
The position of the image.
srcstring必填
The relative URL of the image.
{
"image": {
"position": 0,
"src": "string"
}
}
响应
- 200
- 422
200
- application/json
- 数据结构
- 示例
- Result
数据结构
image object
idstring
示例:
91d032e7-bbc8-47e4-8668-9ba6fe714de6product_idstring
示例:
636a07da-39eb-4829-bde9-b65fae1c28b0positioninteger
默认值:
0示例:
2srcstring
示例:
//cdn.shoplazza.com/loading.pngwidthinteger
默认值:
0示例:
100heightinteger
默认值:
0示例:
100altstring
示例:
created_atstring
示例:
2024-04-08T07:13:28Zupdated_atstring
示例:
2024-04-16T08:37:28Z{
"image": {
"id": "91d032e7-bbc8-47e4-8668-9ba6fe714de6",
"product_id": "636a07da-39eb-4829-bde9-b65fae1c28b0",
"position": 2,
"src": "//cdn.shoplazza.com/loading.png",
"width": 100,
"height": 100,
"alt": "",
"created_at": "2024-04-08T07:13:28Z",
"updated_at": "2024-04-16T08:37:28Z"
}
}
{
"image": {
"id": "91d032e7-bbc8-47e4-8668-9ba6fe714de6",
"product_id": "636a07da-39eb-4829-bde9-b65fae1c28b0",
"position": 2,
"src": "//cdn.shoplazza.com/loading.png",
"width": 100,
"height": 100,
"alt": "",
"created_at": "2024-04-08T07:13:28Z",
"updated_at": "2024-04-16T08:37:28Z"
}
}
422
- application/json
- 数据结构
- 示例
- Result
数据结构
errorsstring[]
{
"errors": [
"Position must be greater than 0"
]
}
{
"errors": [
"Position must be greater than 0"
]
}