We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 965f77d commit eebe7ebCopy full SHA for eebe7eb
proto/spaceone/api/identity/v2/user_profile.proto
@@ -22,6 +22,13 @@ service UserProfile {
22
};
23
}
24
25
+ rpc update_password(UpdatePasswordUserProfileRequest) returns (UserInfo) {
26
+ option (google.api.http) = {
27
+ post: "/identity/v2/user-profile/update-password"
28
+ body: "*"
29
+ };
30
+ }
31
+
32
33
rpc verify_email (VerifyEmailRequest) returns (google.protobuf.Empty) {
34
option (google.api.http) = {
@@ -107,6 +114,17 @@ message UpdateUserProfileRequest {
107
114
google.protobuf.Struct tags = 6;
108
115
109
116
117
+//{
118
+// "current_password": "password",
119
+// "new_password": "new_password"
120
+//}
121
+message UpdatePasswordUserProfileRequest {
122
+ string new_password = 1;
123
+ // +optional
124
+ string current_password = 2;
125
126
+}
127
110
128
//{
111
129
// "email": "[email protected]"
112
130
//}
0 commit comments