We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74add6d commit 51b7acfCopy full SHA for 51b7acf
1 file changed
consultingapis/dingtalk/v1/dingtalk.proto
@@ -49,6 +49,12 @@ service DingTalkService {
49
get: "/dingtalk/chat/v1/unit/sync"
50
};
51
}
52
+
53
+ rpc CreateRecruitChatGroup(CreateClassChatGroupRequest) returns (CreateClassChatGroupResponse) {
54
+ option (google.api.http) = {
55
+ post: "/dingtalk/chat/v1/Recruit/create"
56
+ };
57
+ }
58
59
60
message CreateClassChatGroupRequest {
@@ -131,4 +137,14 @@ message SyncGradeChatGroupRequest {
131
137
132
138
message SyncGradeChatGroupResponse {
133
139
string message = 1;
140
+}
141
142
+message CreateRecruitChatGroupRequest{
143
+ repeated string member_id = 1;
144
145
146
+message CreateRecruitChatGroupResponse{
147
+ string chat_id = 1;
148
+ string openConversationId = 2;
149
+ string invite_url = 3;
134
150
0 commit comments