Skip to content

Commit

Permalink
fix:consultingapi createrecruitchatgroup adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
whxxxxxxxxxx committed Sep 23, 2024
1 parent 8b2bc58 commit b2d2cf7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions consultingapis/dingtalk/v1/dingtalk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ service DingTalkService {
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
option (google.api.http) = {
post: "/dingtalk/chat/v1/recruit/create"
body: "*"
body: "body"
};
}
}
Expand Down Expand Up @@ -141,8 +141,11 @@ message SyncGradeChatGroupResponse {
}

message CreateRecruitChatGroupRequest{
repeated string member_id = 1;
string name = 2;
Body body = 1;
message Body {
repeated string member_id = 1;
string name = 2;
}
}

message CreateRecruitChatGroupResponse{
Expand Down

0 comments on commit b2d2cf7

Please sign in to comment.