Skip to content

Commit a4e5312

Browse files
committed
feat: fix CreateRecruitChatGroup APIs
1 parent 92f96c1 commit a4e5312

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

consultingapis/dingtalk/v1/dingtalk.proto

+8-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ service DingTalkService {
5050
};
5151
}
5252

53-
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupRequest) {
53+
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
5454
option (google.api.http) = {
55-
post: "/dingtalk/chat/v1/Recruit/create"
55+
post: "/dingtalk/chat/v1/recruit/create"
56+
body: "body"
5657
};
5758
}
5859
}
@@ -141,6 +142,11 @@ message SyncGradeChatGroupResponse {
141142

142143
message CreateRecruitChatGroupRequest{
143144
repeated string member_id = 1;
145+
Body body = 2;
146+
147+
message Body {
148+
string name = 1;
149+
}
144150
}
145151

146152
message CreateRecruitChatGroupResponse{

0 commit comments

Comments
 (0)