开放平台

获取属性列表

请求地址(POST)

https://openapi.1card1.cn/BusinessApi/Get_SpecAttributePaged?openId=[OpenId]&signature=[Signature]&timestamp=[TimeStamp]

字段 说明
OpenId 登陆开放平台生成的OpenId
Signature 签名=md5(OpenId+Secret+Timestamp+data),格式:32位md5大写加密
TimeStamp 发起请求的时间戳,查看标准timestamp

请求说明

data={"userAccount":"10000","where":" 1=1 AND SpecName='颜色' ", "pageIndex":0,"pageSize":10,"orderBy":" "}

字段 是否必须 说明
userAccount 工号

返回说明

成功时返回:

{ "status": 0, "total": 3, "data": [{ "AttributeGuid": "ff92bbaf-e899-11e8-917f-0010184dbd22", "AttributeName": "玫瑰红", "AttributeCode": "MGH", "SpecGuid": "ef06ca30-2823-e611-a1d6-7c0507895043", "SpecName": "颜色", "SortNo": "1" }, { "AttributeGuid": "fb84cef5-e899-11e8-917f-0010184dbd22", "AttributeName": "珍珠白", "AttributeCode": "ZZB", "SpecGuid": "ef06ca30-2823-e611-a1d6-7c0507895043", "SpecName": "颜色", "SortNo": "2" }] }

字段 是否必须 说明
AttributeGuid 属性唯一标识
AttributeName 属性名称
AttributeCode 属性SKU编码
SpecGuid 该属性所属规格唯一标识
SpecName 该属性所属规格名称
SortNo 属性序号

失败时返回:

{"status":-1,"message":"查询失败及原因"}

字段 是否必须 说明
status 状态(0,成功;-1,失败)
message 查询失败及原因

获取属性列表 调试