请求方式:
GET
请求地址:
https://api.eshouhou.cn/pen/v2/Client/GetMemberProductDetail?access_token=eXNoNTRkZDRmOGFyaW5meCY2YTgyNTFiYS1jZTY0LTQ2YjctYTUwNS1hNGU1NjAwMzI3MDYmMTIw
请求参数:
参数 | 类型 | 必填 | 名称 | 备注 |
productId | string | 是 | 登记的产品id | productId与customerProductId至少有一个不能为空 |
customerProductId | String | 是 | 审核后的设备id | productId与customerProductId至少有一个不能为空 |
返回参数:
参数 | 类型 | 必填 | 名称 |
ResultCode | String | 是 | 返回编码 |
ErrorMsg | String | 否 | 返回信息 |
ResultValue | Object | 否 | 返回对象 |
ResultValue对象:
参数 | 类型 | 必填 | 名称 | 备注 |
ID | string | 是 | 登记id | 当前会员登记的id |
CustomerProductID | string | 是 | 客户设备id | 审核通过后该参数存在 |
ProductID | string | 否 | 产品id | |
ProductName | string | 否 | 产品名称 | |
ProductCategoryID | string | 否 | 产品分类id | |
ProductCategoryName | string | 是 | 产品分类名称 | |
SerialNumber | string | 是 | 序列号 | |
ProductImgUrl | string | 否 | 产品图片URL | |
AuditResult | string | 否 | 审核状态 | 默认0,1审核中,2审核通过,3审核失败 |
WarrantyEnd | string | 否 | 质保结束时间 | |
WarrantyDay | string | 否 | 质保剩余天数 | |
BrandName | string | 否 | 品牌名称 | |
ProductType | string | 否 | 产品类型 | |
Area | String | 否 | 所属区域 | 所属区域格式为“北京市-北京市-朝阳区” |
InstallationAddress | String | 否 | 安装地址 | |
PurchaseDate | String | 否 | 购买日期 | |
InstallationDate | String | 否 | 安装日期 | |
InvoiceImgPaths | Array | 否 | 购买凭证 |
请求示例:
https://api.eshouhou.cn/open/v2/Client/GetMemberProductDetail?access_token= eXNoNTRkZDRmOGFyaW5meCY2YTgyNTFiYS1jZTY0LTQ2YjctYTUwNS1hNGU1NjAwMzI3MDYmMTI&productId=&customerProductId=5570bd1e-6b43-4225-9973-321690a1c2d7
返回成功示例:
{ "ResultCode": 0, "ErrorMsg": "", "ResultValue": { "ID": "", "CustomerProductID": "5570bd1e-6b43-4225-9973-321690a1c2d7", "SerialNumber": "777777", "PurchaseDate": "2020-04-03", "InstallationDate": "2020-04-11", "Area": "", "InstallationAddress": "Kalimantan Timur-Kutai Kartanegara", "Channel": 0, "AuditResult": 2, "WarrantyEnd": "2020-05-31", "WarrantyDay": 25, "BrandName": "[示例]品牌", "ProductName": "海尔洗衣机", "ProductType": "HR_2020", "ProductImgUrl": "", "InvoiceImgPaths": [ "https://esh-resources-test.oss-cn-beijing.aliyuncs.com/customerproduct/3ca69fe6-52ee-4f6f-9715-10bba561468d_customerproduct.png" ] } } |