openapi: 3.0.0 info: version: v1 title: Legacy API (v1) Account V1AccountsDropdown API description: '' servers: - url: https://app.practicepanther.com tags: - name: V1AccountsDropdown paths: /api/internal/v1/tenants/{tenantId}/accounts-dropdown: get: tags: - V1AccountsDropdown operationId: V1AccountsDropdown_GetAsync parameters: - name: tenantId in: path required: true schema: type: integer format: int64 - name: searchTerm in: query required: false schema: type: string - name: projectId in: query required: false schema: type: integer format: int32 - name: pageSize in: query required: false schema: type: integer format: int32 - name: pageNumber in: query required: false schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/DropdownResponse' text/json: schema: type: array items: $ref: '#/components/schemas/DropdownResponse' security: - oauth2: - full components: schemas: DropdownResponse: type: object properties: value: type: string displayName: type: string groupSlug: type: string securitySchemes: oauth2: type: oauth2 description: OAuth 2.0 - Authorization Code Grant flows: authorizationCode: authorizationUrl: /OAuth/Authorize tokenUrl: /OAuth/Token scopes: full: Read/Write access to all resources