# List custom detections

Returns your organization's custom detections. Each entry includes the detection event type and name only; retrieve a detection individually for its logic and rules.

Endpoint: GET /v1/controls/customDetections
Version: v1
Security: x-api-key

## Security:

  - `x-api-key` (unknown)
    apiKey in header x-api-key

## Response 200:

  - `200` (unknown)
    OK

## Response 200 fields (application/json):

  - `result` (array)
    Your organization's custom detections.

  - `result.detectionEventType` (string, required)
    The custom detection's unique identifier. Always an uppercase identifier beginning with CUSTOM_.
    Example: CUSTOM_TORRENT_WEBSITE_VISIT

  - `result.detectionEventName` (string, required)
    The custom detection's name, set when the detection was created. It cannot be updated.
    Example: Torrent website visit

## Response 404:

  - `404` (unknown)
    Not Found

