添加小店活动门店
该接口为服务商或商户给零售小店活动添加门店专用接口。 使用对象:品牌的品牌主商户号或品牌服务商。 官方文档
js
wxpay.v3.marketing.goodsSubsidyActivity.retailStoreAct._brand_id_.stores.post({
out_request_no,
add_time,
stores,
}, { brand_id })
.then(
({
data: {
add_time,
failed_stores,
},
}) => ({
add_time,
failed_stores,
})
)
删除小店活动门店
该接口为服务商或商户给零售小店活动删除门店专用接口。 使用对象:品牌的品牌主商户号或品牌服务商。 官方文档
js
wxpay.v3.marketing.goodsSubsidyActivity.retailStoreAct._brand_id_.stores.delete({
brand_id,
data,
})
.then(
({
data: {
delete_time,
failed_stores,
},
}) => ({
delete_time,
failed_stores,
})
)
查询小店活动门店列表
该接口为服务商或商户给零售小店活动查询门店列表专用接口。 使用对象:品牌的品牌主商户号或品牌服务商。 官方文档
js
wxpay.v3.marketing.goodsSubsidyActivity.retailStoreAct._brand_id_.stores.get({
brand_id,
params,
})
.then(
({
data: {
total_count,
data,
offset,
limit,
},
}) => ({
total_count,
data,
offset,
limit,
})
)