- 授权
- 商品
- 地址
- 价格
- 库存
- 订单
- 售后
- 物流
- 发票
- 类目
- 员工
4.4 获取商品图片
GET
/api/v2/product/images
Product
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
product_id
string
商品编号
>= 0 字符<= 11 字符
示例值:
P0000002551
Header 参数
channel
string
可选
默认值:
benlai
shopId
string
商城id
默认值:
123
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open-agent-branch.benlai.com/api/v2/product/images?product_id=P0000002551' \
--header 'channel: benlai' \
--header 'shopId: 123'
返回响应
🟢200成功
text/plain
Body
images
array[object (Benlai.Open.Models.Product.ProductImageDto) {3}]
图片列表
img_url
string
图片链接
is_primary
string
是否首图
sort
integer <int32>
排序
示例
{
"code": 0,
"msg": "success",
"value": {
"images": [
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/e07d1dfe-fff6-4c99-9c8d-ad748f104c87.jpg",
"is_primary": "YES",
"sort": 1
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/1615c747-445e-4c7f-9427-8f1be6389d85.jpg",
"is_primary": "NO",
"sort": 2
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/894ba205-c25b-489a-bdb0-6ae48a4be65d.jpg",
"is_primary": "NO",
"sort": 3
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/38a2f6d7-6e95-41dd-b55d-f3c1a8eedd5d.jpg",
"is_primary": "NO",
"sort": 4
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/66a57050-0bd1-4d9d-a34a-a53a5b8a355c.jpg",
"is_primary": "NO",
"sort": 5
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/6ab701bb-91ba-43d1-b32d-5d1bdcf0ab7f.jpg",
"is_primary": "NO",
"sort": 6
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/7c109d73-d5ad-4464-bbe4-92ee2699485f.jpg",
"is_primary": "NO",
"sort": 7
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/a838a1fe-b2a3-43a8-a8bc-d578c140348b.jpg",
"is_primary": "NO",
"sort": 8
},
{
"img_url": "https://image.benlailife.com/ProductImages/000/000/001/739/app/f80b2687-1798-410a-8edd-93157cc2b08a.jpg",
"is_primary": "NO",
"sort": 9
}
]
}
}