审核记录列表

1、查询审核记录列表,以及审核被驳回的原因;
2、只支持查询近15天提交审核的记录 ;

请求URL:

POST https://kf.fw199.com/gateway/dd/product/audit/list

公共参数

参数名称 参数类型 是否必须 示例值 参数描述
appid String 合作伙伴AppId
timestamp String 1657525936 当前Unix时间戳,秒
seller_nick String 38173182 抖店的账号,对应蜂巢授权返回doudianseller字段
sign String

业务参数

参数名称 参数类型 是否必须 示例值 参数描述
publish_status Int64 0 指定审核状态返回商品列表:0-审核中 1-审核通过 2-审核拒绝
page Int64 0 第几页(第一页为0,最大为99)
size Int64 20 每页返回条数,最多支持100条
product_id Int64 11 商品id

2. 请求示例代码(Java)

请求示例代码

    @Test
    public void  DDProductAuditlist() throws Exception {
        Map<String, Object> data = new HashMap<String, Object>();
        data.put("appid",  Config.AppId);
        Long timestamp = System.currentTimeMillis() / 1000;
        data.put("timestamp", timestamp.toString());
        data.put("seller_nick", Config.DDSellerNick);
        data.put("publish_status","0" );
        data.put("page","0" );
        data.put("size","20" );
        data.put("product_id","3668963015870513459" );
        data.put("sign", Sign(data,Config.AppSecret));
        // 调用服务API
        String resp = doHttpRequest(Config.DDProductAuditList, data);
        System.out.println(resp);
    }

3. 返回结果如下:


{"code":0,"message":"ok","data":{"records":[],"total":0}}

说明: code为0表示成功,非0为失败,message会包含失败原因。返回字段说明见文档
https://op.jinritemai.com/docs/api-docs/14/1748

文档更新时间: 2024-05-21 16:23   作者:JSL