获取卖家店铺评分信息(API-C23)
接口描述
用户可以调用该接口获取卖家的评分信息,评分维度为分:
合规、合规排名、
评价、评价排名、
库存、库存排名、
增长、增长排名、
回款、回款排名。
(仅限同行业)
接口地址
GET /v1/seller/shop-score
请求参数
字段 | 描述 | 是否必填 |
---|---|---|
applicationCode | String(32) Dowsure 卖家申请单编号 |
Required |
请求示例
{
"applicationCode": "xxxxx"
}
响应参数
字段 | 描述 | 是否必传 |
---|---|---|
applicationCode | String(32) Dowsure 卖家申请单编号 |
Required |
score | Decimal(5,2) 得分 |
Required |
shopScoreList | ||
offerId | String(32) 卖家店铺offerId(MD5加密) |
Required |
complianceScore | Decimal(5,2) 合规分数 |
|
compliancePlacing | int 在同行业中的合规排名 |
Required |
feedbackScore | Decimal(5,2) 评价分数 |
Required |
feedbackPlacing | int 在同行业中的评价排名 |
Required |
stockScore | Decimal(5,2) 库存分数 |
Required |
stockPlacing | int 在同行业中的库存排名 |
Required |
increaseScore | Decimal(5,2) 增长分数 |
Required |
increasePlacing | int 在同行业中的增长排名 |
Required |
disburStabilityScore | Decimal(5,2) 回款稳定分数 |
Required |
disburStabilityPlacing | int 在同行业中的回款稳定排名 |
Required |
totalScore | Decimal(5,2) 总分数 |
Required |
totalPlacing | int 在同行业中的总排名 |
Required |
响应示例
{
"applicationCode": "xxxxx",
"score": "98",
"shopScoreList" : [{
"offerid": "XXXXXXXXXX",
"complianceScore" : "10.00",
"compliancePlacing" : "100",
"feedbackScore" : "10.00",
"feedbackPlacing" : "100",
"stockScore" : "10.00",
"stockPlacing" : "100",
"increaseScore" : "10.00",
"increasePlacing" : "100",
"disburStabilityScore" : "10.00",
"disburStabilityPlacing" : "100",
"totalScore" : "100",
"totalPlacing" : "10.00"
}]
}