# 获取推客的注册状态,以及和机构的绑定状态

# 接口说明

可通过该接口,可获取到当前推客,在推客平台上的注册状态,以及和当前机构的绑定状态

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/promoter/get_promoter_register_and_bind_status?access_token=ACCESS_TOKEN

# 请求参数说明

参数 类型 是否必填 描述
sharer_openid string 推客在小程序中的 openid,和 sharer_appid 二选一
sharer_appid string 推客在微信电商平台注册的身份标识,和 sharer_openid 二选一
is_simple_register bool 是否走简易版本注册【当走简易版本注册时,可以不要求推客开通商户号,但分佣只能走机构自己分佣;如果不走简易注册流程时,要求推客开通商户号作为收款账户,可以平台分佣】

# 请求参数示例

{
  "sharer_openid": "openid",
  "is_simple_register": true
}

# 返回参数说明

参数 类型 描述
errcode number 错误码
errmsg string 错误信息
bind_status number 和机构的绑定状态,0:未绑定 1:已绑定
register_status number 当前推客的注册状态:0:未注册 1:注册中,还未完成 2:已完成注册 3:用户未支付实名,需要把微信先支付实名才能继续注册
register_business_type string register_status等于 0 或者 1时,调用注册流程时,openBusinessView需要的businessType
register_query_string string 注册时需要的queryString参数
bind_business_type string bind_status等于0时,调用绑定流程时,openBusinessView需要的businessType
bind_query_string string 绑定时需要的queryString参数

# 返回参数示例

{
  "errcode": "0",
  "errmsg": "ok",
  "bind_status": 0,
  "register_status":1,
  "register_business_type":"",
  "register_query_string":"",
  "bind_business_type":"",
  "bind_query_string":""
}

调用openbusinesstype为注册时的示例:

wx.openBusinessView(
    {
		businessType: 'CreatorApplyments',
       queryString: '',
		extraData: {
          commissionType: number,
          commissionRatio: number,
			headSupplierAppid: xxx
		}
    }
)

headSupplierAppid为机构的appid内容 commissionType为分佣类型,0代表平台分佣,1代表机构自己分佣 commissionRatio为分佣比例,如果为平台分佣,值的范围为 100000 - 900000,代表了【10%,90%】,如果是平台分佣,设置成 0 就好

调用openbusinesstype为绑定时的示例:

wx.openBusinessView(
    {
		businessType: 'CreatorApplyments',
       queryString: '',
		extraData: {
          commissionType: number,
          commissionRatio: number,
			headSupplierAppid: xxx
		}
    }
)

headSupplierAppid为机构的appid内容 commissionType为分佣类型,0代表平台分佣,1代表机构自己分佣 commissionRatio为分佣比例,如果为平台分佣,值的范围为 100000 - 900000,代表了【10%,90%】,如果是平台分佣,设置成 0 就好

# 错误码

错误码 错误描述
公共错误码 -
10024000 参数错误