Skip to content

Commit

Permalink
feat: fix CreateRecruitChatGroup APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketmoon committed Sep 21, 2024
1 parent 92f96c1 commit a4e5312
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions consultingapis/dingtalk/v1/dingtalk.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ service DingTalkService {
};
}

rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupRequest) {
rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
option (google.api.http) = {
post: "/dingtalk/chat/v1/Recruit/create"
post: "/dingtalk/chat/v1/recruit/create"
body: "body"
};
}
}
Expand Down Expand Up @@ -141,6 +142,11 @@ message SyncGradeChatGroupResponse {

message CreateRecruitChatGroupRequest{
repeated string member_id = 1;
Body body = 2;

message Body {
string name = 1;
}
}

message CreateRecruitChatGroupResponse{
Expand Down

0 comments on commit a4e5312

Please sign in to comment.