File tree 1 file changed +18
-0
lines changed
raystack/frontier/v1beta1
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -265,6 +265,20 @@ service AdminService {
265
265
};
266
266
}
267
267
268
+ // buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
269
+ // buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
270
+ rpc ExportOrganizationTokens (ExportOrganizationTokensRequest ) returns (stream google .api .HttpBody ) {
271
+ option (google.api.http ) = {
272
+ get : "/v1beta1/admin/organizations/{id}/tokens/export" ,
273
+ };
274
+ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation ) = {
275
+ tags : "Organization" ;
276
+ summary : "Export organization tokens" ;
277
+ description : "Export organization tokens" ;
278
+ produces : "text/csv" ;
279
+ };
280
+ }
281
+
268
282
rpc SetOrganizationKyc (SetOrganizationKycRequest ) returns (SetOrganizationKycResponse ) {
269
283
option (google.api.http ) = {
270
284
put : "/v1beta1/admin/organizations/{org_id}/kyc" ,
@@ -1299,3 +1313,7 @@ message SearchOrganizationTokensResponse {
1299
1313
RQLQueryPaginationResponse pagination = 2 ;
1300
1314
RQLQueryGroupResponse group = 3 ;
1301
1315
}
1316
+
1317
+ message ExportOrganizationTokensRequest {
1318
+ string id = 1 [(validate.rules ) .string.min_len = 3 ];
1319
+ }
You can’t perform that action at this time.
0 commit comments