Skip to content

Commit

Permalink
BatchGetCompanyMembersByThirdId
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanJey committed Aug 29, 2024
1 parent 46602f6 commit fa67859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (u *User) BatchGetCompanyMembers(operationID string, accountList []string)

func (u *User) BatchGetCompanyMembersByThirdId(operationID string, req api_req.BatchGetCompanyMembersByThirdIdReq) (*api_resp.BatchGetCompanyMembersResp, error) {
resp := api_resp.BatchGetCompanyMembersResp{}
err := http_client.Get(operationID, fmt.Sprintf(u.addr+consts.BatchGetCompanyMembersByThirdIdPath, u.companyId), req, &resp, *u.sign)
err := http_client.Post(operationID, fmt.Sprintf(u.addr+consts.BatchGetCompanyMembersByThirdIdPath, u.companyId), req, &resp, *u.sign)
if err != nil {
log.Error(operationID, "BatchGetCompanyMembersByThirdId err ", err.Error())
return nil, err
Expand Down

0 comments on commit fa67859

Please sign in to comment.