> ## Documentation Index
> Fetch the complete documentation index at: https://docs.forge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List security export destinations

> List sanitized security export destinations and inspect bounded delivery health without accessing sink credentials or changing delivery state.



## OpenAPI

````yaml /openapi/forge-api.yaml get /api/headless/v1/organizations/{organizationId}/security-telemetry/export-destinations
openapi: 3.0.3
info:
  title: Forge API
  version: 0.1.0
  description: >-
    Automate Forge inventory, investigations, findings, governance, fleet,
    policy, configuration, compliance, MCP, service-account, and audit
    workflows.
servers:
  - url: https://api.forge.ai
    description: Forge production API
security:
  - serviceAccountBearer: []
tags:
  - name: approvals
    description: MCP approvals
  - name: audit
    description: Audit
  - name: capabilities
    description: Capabilities
  - name: compliance
    description: Compliance
  - name: findings
    description: Findings
  - name: fleet
    description: Fleet
  - name: governance
    description: Governance
  - name: inventory
    description: Inventory
  - name: investigation
    description: Investigations
  - name: managed-config
    description: Managed configuration
  - name: mcp
    description: MCP sessions
  - name: mcp-registry
    description: MCP and skill registry
  - name: operations
    description: operations
  - name: policies
    description: Policies and violations
  - name: service-accounts
    description: Service accounts
  - name: settings
    description: Automation settings
paths:
  /api/headless/v1/organizations/{organizationId}/security-telemetry/export-destinations:
    get:
      tags:
        - operations
      summary: List security export destinations
      description: >-
        List sanitized security export destinations and inspect bounded delivery
        health without accessing sink credentials or changing delivery state.
      operationId: listHeadlessSecurityExportDestinations
      parameters:
        - $ref: '#/components/parameters/OrganizationId'
      responses:
        '200':
          description: >-
            Sanitized security export destination configuration. Secret values
            and secret references are never returned.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/HeadlessSecurityExportDestinationListResponse
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
components:
  parameters:
    OrganizationId:
      name: organizationId
      in: path
      required: true
      schema:
        type: string
  schemas:
    HeadlessSecurityExportDestinationListResponse:
      type: object
      additionalProperties: false
      required:
        - destinations
      properties:
        destinations:
          type: array
          items:
            $ref: '#/components/schemas/HeadlessSecurityExportDestination'
    HeadlessSecurityExportDestination:
      type: object
      additionalProperties: false
      required:
        - id
        - organizationId
        - name
        - destinationType
        - status
        - config
        - filters
        - detailPolicy
        - replayLookbackDays
        - deliveryStateRetentionDays
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
        organizationId:
          type: string
        name:
          type: string
        destinationType:
          type: string
          enum:
            - splunk_hec
            - s3_jsonl
        status:
          type: string
          enum:
            - active
            - paused
            - unhealthy
        config:
          type: object
          description: >-
            Sanitized non-secret delivery configuration. Configured secret
            fields contain only the literal configured marker.
          additionalProperties: true
        filters:
          type: object
          additionalProperties: true
        detailPolicy:
          type: object
          additionalProperties: true
        replayLookbackDays:
          type: integer
        deliveryStateRetentionDays:
          type: integer
        lastTestStatus:
          type: string
        lastTestAt:
          type: string
          format: date-time
        lastTestError:
          type: string
          description: Bounded provider diagnostic with credential-like values redacted.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
  responses:
    Error:
      description: Stable Forge error envelope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
  securitySchemes:
    serviceAccountBearer:
      type: http
      scheme: bearer
      bearerFormat: Forge service-account or delegated OAuth access token
      description: >-
        Enter a Forge service-account token or delegated OAuth access token.
        Mintlify adds the Bearer prefix.

````