Skip to content

Commit

Permalink
feat:add CreateRecruitChatGroup APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketmoon committed Sep 21, 2024
1 parent 74add6d commit 51b7acf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions consultingapis/dingtalk/v1/dingtalk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ service DingTalkService {
get: "/dingtalk/chat/v1/unit/sync"
};
}

rpc CreateRecruitChatGroup(CreateClassChatGroupRequest) returns (CreateClassChatGroupResponse) {
option (google.api.http) = {
post: "/dingtalk/chat/v1/Recruit/create"
};
}
}

message CreateClassChatGroupRequest {
Expand Down Expand Up @@ -131,4 +137,14 @@ message SyncGradeChatGroupRequest {

message SyncGradeChatGroupResponse {
string message = 1;
}

message CreateRecruitChatGroupRequest{
repeated string member_id = 1;
}

message CreateRecruitChatGroupResponse{
string chat_id = 1;
string openConversationId = 2;
string invite_url = 3;
}

0 comments on commit 51b7acf

Please sign in to comment.