We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f96c1 commit a4e5312Copy full SHA for a4e5312
consultingapis/dingtalk/v1/dingtalk.proto
@@ -50,9 +50,10 @@ service DingTalkService {
50
};
51
}
52
53
- rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupRequest) {
+ rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) {
54
option (google.api.http) = {
55
- post: "/dingtalk/chat/v1/Recruit/create"
+ post: "/dingtalk/chat/v1/recruit/create"
56
+ body: "body"
57
58
59
@@ -141,6 +142,11 @@ message SyncGradeChatGroupResponse {
141
142
143
message CreateRecruitChatGroupRequest{
144
repeated string member_id = 1;
145
+ Body body = 2;
146
+
147
+ message Body {
148
+ string name = 1;
149
+ }
150
151
152
message CreateRecruitChatGroupResponse{
0 commit comments