Skip to content

创建商户违规通知回调地址

调用该接口设置商户违规通知回调地址,开启违规通知,当子商户被处罚或拦截时,微信支付会通过回调地址通知从业机构/服务商/渠道商。 官方文档

js
wxpay
.
v3
.
merchantRiskManage
.
violationNotifications
.
post
({
notify_url
,
}) .
then
(
({
data
: {
notify_url
,
}, }) => ({
notify_url
,
}) )

查询商户违规通知回调地址

调用该接口查询商户违规通知回调地址,如果已设置回调地址,说明已开启违规通知,当子商户被处罚或拦截时,微信支付会通过回调地址通知从业机构/服务商/渠道商。 官方文档

js
wxpay
.
v3
.
merchantRiskManage
.
violationNotifications
.
get
()
.
then
(
({
data
: {
notify_url
,
}, }) => ({
notify_url
,
}) )

修改商户违规通知回调地址

调用该接口修改商户违规通知回调地址,开启违规通知,当子商户被处罚或拦截时,微信支付会通过回调地址通知从业机构/服务商/渠道商。 官方文档

js
wxpay
.
v3
.
merchantRiskManage
.
violationNotifications
.
put
({
notify_url
,
}) .
then
(
({
data
: {
notify_url
,
}, }) => ({
notify_url
,
}) )

删除商户违规通知回调地址

调用该接口删除商户违规通知回调地址,关闭违规通知,当子商户被处罚或拦截时,微信支付不会再通知从业机构/服务商/渠道商。 官方文档

js
wxpay
.
v3
.
merchantRiskManage
.
violationNotifications
.
delete
()
.
then
(({
status
}) =>
status
=== 204)

Released under the MIT License. (SITEMAP)