diff --git a/src/Api/AdminConsole/Controllers/OrganizationsController.cs b/src/Api/AdminConsole/Controllers/OrganizationsController.cs index a6de8c521fa1..4aa4bdf475c3 100644 --- a/src/Api/AdminConsole/Controllers/OrganizationsController.cs +++ b/src/Api/AdminConsole/Controllers/OrganizationsController.cs @@ -572,16 +572,4 @@ public async Task PutCollectionManagement(Guid id, [F return new OrganizationResponseModel(organization, plan); } - [HttpGet("{id}/plan-type")] - public async Task GetPlanType(string id) - { - var orgIdGuid = new Guid(id); - var organization = await _organizationRepository.GetByIdAsync(orgIdGuid); - if (organization == null) - { - throw new NotFoundException(); - } - - return organization.PlanType; - } }