Skip to content

Commit b2d2cf7

Browse files
committed
fix:consultingapi createrecruitchatgroup adjust
1 parent 8b2bc58 commit b2d2cf7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

consultingapis/dingtalk/v1/dingtalk.proto

+6-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ service DingTalkService {
5353
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
5454
option (google.api.http) = {
5555
post: "/dingtalk/chat/v1/recruit/create"
56-
body: "*"
56+
body: "body"
5757
};
5858
}
5959
}
@@ -141,8 +141,11 @@ message SyncGradeChatGroupResponse {
141141
}
142142

143143
message CreateRecruitChatGroupRequest{
144-
repeated string member_id = 1;
145-
string name = 2;
144+
Body body = 1;
145+
message Body {
146+
repeated string member_id = 1;
147+
string name = 2;
148+
}
146149
}
147150

148151
message CreateRecruitChatGroupResponse{

0 commit comments

Comments
 (0)