File tree 1 file changed +17
-0
lines changed
raystack/frontier/v1beta1
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -302,6 +302,17 @@ service AdminService {
302
302
};
303
303
}
304
304
305
+ rpc ListOrganizationsKyc (ListOrganizationsKycRequest ) returns (ListOrganizationsKycResponse ) {
306
+ option (google.api.http ) = {
307
+ get : "/v1beta1/admin/organizations/kyc" ,
308
+ };
309
+ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation ) = {
310
+ tags : "OrganizationKyc" ;
311
+ summary : "List KYC information of all organizations" ;
312
+ description : "List KYC information of all organization" ;
313
+ };
314
+ }
315
+
305
316
// Projects
306
317
rpc ListProjects (ListProjectsRequest ) returns (ListProjectsResponse ) {
307
318
option (google.api.http ) = {get : "/v1beta1/admin/projects" };
@@ -1038,6 +1049,12 @@ message SetOrganizationKycResponse {
1038
1049
OrganizationKyc organization_kyc = 1 ;
1039
1050
}
1040
1051
1052
+ message ListOrganizationsKycRequest {}
1053
+
1054
+ message ListOrganizationsKycResponse {
1055
+ repeated OrganizationKyc organizations_kyc = 1 ;
1056
+ }
1057
+
1041
1058
message SearchOrganizationsResponse {
1042
1059
message OrganizationResult {
1043
1060
string id = 1 ;
You can’t perform that action at this time.
0 commit comments