> ## Documentation Index
> Fetch the complete documentation index at: https://conductorone-findings-decoys-followup.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Finding Settings

> List every configurable finding type and whether detection is enabled.



## OpenAPI

````yaml https://spec.speakeasy.com/conductor-one/conductorone/my-source-with-code-samples get /api/v1/findings/settings
openapi: 3.1.0
info:
  description: The C1 API is a HTTP API for managing C1 resources.
  title: C1 API
  version: 0.1.0-alpha
servers:
  - description: The C1 API server for the current tenant.
    url: https://{tenantDomain}.conductor.one
    variables:
      tenantDomain:
        default: example
        description: The domain of the tenant to use for this request.
security:
  - bearerAuth: []
    oauth: []
paths:
  /api/v1/findings/settings:
    get:
      tags:
        - Finding Settings
      summary: List Finding Settings
      description: List every configurable finding type and whether detection is enabled.
      operationId: c1.api.finding.v1.FindingSettingsService.ListFindingSettings
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/c1.api.finding.v1.ListFindingSettingsResponse
          description: Successful response
components:
  schemas:
    c1.api.finding.v1.ListFindingSettingsResponse:
      description: The ListFindingSettingsResponse message.
      properties:
        list:
          description: >-
            One entry per configurable finding type, in FindingType declaration
            order.
             Custom findings are excluded: they arrive over CreateFinding rather than
             from a detector, so there is nothing to switch off.
          items:
            $ref: '#/components/schemas/c1.api.finding.v1.FindingTypeSetting'
          type:
            - array
            - 'null'
      title: List Finding Settings Response
      type: object
      x-speakeasy-name-override: ListFindingSettingsResponse
    c1.api.finding.v1.FindingTypeSetting:
      description: >-
        FindingTypeSetting is one finding type's detection switch as it
        currently
         stands. Named for a single type on purpose: the stored model
         c1.models.finding.v1.FindingSettings is the tenant-wide object holding every
         type, and one name for both granularities reads as the same thing twice.
         Display copy for the type is client-owned; this carries state only.
      properties:
        enabled:
          description: >-
            Whether the system detects this finding type. Types never configured
            read
             back their shipped default, which is per type rather than uniformly on.
          type: boolean
        findingType:
          description: The findingType field.
          enum:
            - FINDING_TYPE_UNSPECIFIED
            - FINDING_TYPE_SIMILAR_USERNAME_MATCH
            - FINDING_TYPE_SERVICE_ACCOUNT_MISCLASSIFICATION
            - FINDING_TYPE_NHI_UNOWNED
            - FINDING_TYPE_SERVICE_ACCOUNT_UNOWNED
            - FINDING_TYPE_DECOY_CREDENTIAL_USED
            - FINDING_TYPE_CUSTOM
            - FINDING_TYPE_CONNECTOR_ANOMALY_DETECTION_DISABLED
            - FINDING_TYPE_DEACTIVATED_OWNER
            - FINDING_TYPE_UNUSED_SECRET
            - FINDING_TYPE_CREDENTIAL_PUBLICLY_EXPOSED
            - FINDING_TYPE_DECOY_PUBLICLY_EXPOSED
          type: string
          x-speakeasy-unknown-values: allow
      title: Finding Type Setting
      type: object
      x-speakeasy-name-override: FindingTypeSetting
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http
    oauth:
      description: >-
        This API uses OAuth2 with the Client Credential flow.

        Client Credentials must be sent in the BODY, not the headers.

        For an example of how to implement this, refer to the
        [c1TokenSource.Token()](https://github.com/ConductorOne/conductorone-sdk-go/blob/3375fe7c0126d17e7ec4e711693dee7b791023aa/token_source.go#L101-L187)
        function.
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: /auth/v1/token
      type: oauth2

````