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

# List org-wide KPI HTTP sync review rows

> Settings console endpoint for KPI HTTP sync review. Use per-KPI routes for lifecycle actions such as secrets, dry-run, publish, disable, run-now, and runs.



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/kpi-http-syncs
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Integrations and billing
  - name: Notifications and public
paths:
  /api/orgs/{id}/kpi-http-syncs:
    get:
      tags:
        - KPIs and strategy
      summary: List org-wide KPI HTTP sync review rows
      description: >-
        Settings console endpoint for KPI HTTP sync review. Use per-KPI routes
        for lifecycle actions such as secrets, dry-run, publish, disable,
        run-now, and runs.
      operationId: get_api_orgs_id_kpi_http_syncs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: sync_id
          in: query
          required: false
          schema:
            type: string
          description: Optional sync id for direct Settings deep links.
      responses:
        '200':
          description: >-
            Org-wide KPI HTTP sync review rows for Settings. Human admins
            receive config and secret metadata; non-admin members receive
            redacted status rows.
          content:
            application/json:
              schema:
                type: object
                properties:
                  syncs:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  sync:
                    type: object
                    nullable: true
                    additionalProperties: true
                  can_manage:
                    type: boolean
                    description: >-
                      Whether the caller can create, edit, save secrets, and run
                      lifecycle actions for KPI syncs.
        '403':
          description: Forbidden for guests and machine actors.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````