Skip to content

Commit 51b7acf

Browse files
committed
feat:add CreateRecruitChatGroup APIs
1 parent 74add6d commit 51b7acf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

consultingapis/dingtalk/v1/dingtalk.proto

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ service DingTalkService {
4949
get: "/dingtalk/chat/v1/unit/sync"
5050
};
5151
}
52+
53+
rpc CreateRecruitChatGroup(CreateClassChatGroupRequest) returns (CreateClassChatGroupResponse) {
54+
option (google.api.http) = {
55+
post: "/dingtalk/chat/v1/Recruit/create"
56+
};
57+
}
5258
}
5359

5460
message CreateClassChatGroupRequest {
@@ -131,4 +137,14 @@ message SyncGradeChatGroupRequest {
131137

132138
message SyncGradeChatGroupResponse {
133139
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;
134150
}

0 commit comments

Comments
 (0)