# Unlock a Sharing Partner

Used to bulk unbundle a shareholder

# Dxplaination of Interface Call Request

http请求方式:POST
https://api.weixin.qq.com/shop/sharer/unbind?access_token=xxxxxxxxx

# Example of request parameters

{
    "openids" : ["openid1", "openid2", "openid3"]
}

# Examples of back-up

{
    "errcode" : 0,
    "errmsg" : "ok",
    "success_list" : ["openid1", "openid2", "openid3"],
    "fail_list" : [],
    "refuse_list" : []
}

# Dxplaination of request parameters

parameter type Is it compulsory? Introductions
openids string array yes List of openid sharers to unbind

# Dxplaination of callback parameters

parameter type Introductions
errcode number Error code
errmsg string Error message
success_list string array Success list (after unbinding, push results via callback)
fail_list string array A list of failures that can be tried again
refuse_list string array Rejected list, not retried (openid error, not unbound time, etc.)