huayandong

doc api

@@ -139,3 +139,22 @@ public static class WxUserInfo { @@ -139,3 +139,22 @@ public static class WxUserInfo {
139 } 139 }
140 ``` 140 ```
141 141
  142 +
  143 +##### 6. 缺用户是否已经建立过绑定关系,如果建立过,返回之前绑定关系的邀请码
  144 +
  145 +- URL: {{localhost}}/boxfish-online-card/wxUser/confirm?openId={{openId}}
  146 +- Method: GET
  147 +- Requestparam: `openId`
  148 +
  149 +- ResponseBody:
  150 +
  151 +```java
  152 +public static class Response {
  153 + // status
  154 + private ResponseStatus status;
  155 + private String message;
  156 +
  157 + private Boolean flagUserHasInvitationCode;
  158 + private Long invitationCode;
  159 +}
  160 +```