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

# List playbooks (org-level + per-rep, with filters)

> List playbooks belonging to an org, newest first. Returns both org-level and rep-level playbooks by default. Filters:

- `rep_id=<slug>` → only that rep's playbooks
- `scope=org` → only org-level (where `rep_id` is null in responses)
- `scope=rep` → only rep-level (any rep in this org)
- `active_only=true` → only `is_active=true` rows

Response rows carry a `rep_id` field that is `null` for org-level playbooks and the partner-supplied rep slug for rep-level ones.



## OpenAPI

````yaml https://api.goparlay.io/docs/json get /v1/orgs/{org_id}/playbooks
openapi: 3.0.3
info:
  title: Parlay API
  description: >-
    Partner-facing API for Parlay pitch scoring, rep intelligence, and coaching.
    See API.md for the full spec.
  version: 0.1.0
servers:
  - url: http://localhost:3000
    description: production
security:
  - ApiKeyAuth: []
tags:
  - name: Health
    description: Service health and platform status
  - name: Analyses
    description: Submit and retrieve pitch scoring analyses
  - name: Orgs
    description: Partner org management
  - name: Reps
    description: Rep management
  - name: Keys
    description: API key lifecycle
  - name: Webhooks
    description: Webhook registration and delivery
  - name: Personas
    description: Rep persona intelligence
  - name: Methodologies
    description: Rep methodology intelligence
  - name: Synthesis
    description: Profile synthesis
  - name: Insights
    description: Org-level insights
  - name: Playbooks
    description: Playbook management + AI drafting
  - name: Prompts
    description: Custom AI prompts
  - name: Scoring
    description: Scoring profile config
  - name: Chat
    description: Scout AI chat
  - name: Dispositions
    description: Call dispositions
  - name: Practice
    description: Practice sessions
  - name: Bulk
    description: Batch and export
  - name: Usage
    description: Usage and billing
  - name: Audit
    description: Audit log
paths:
  /v1/orgs/{org_id}/playbooks:
    get:
      tags:
        - Playbooks
      summary: List playbooks (org-level + per-rep, with filters)
      description: >-
        List playbooks belonging to an org, newest first. Returns both org-level
        and rep-level playbooks by default. Filters:


        - `rep_id=<slug>` → only that rep's playbooks

        - `scope=org` → only org-level (where `rep_id` is null in responses)

        - `scope=rep` → only rep-level (any rep in this org)

        - `active_only=true` → only `is_active=true` rows


        Response rows carry a `rep_id` field that is `null` for org-level
        playbooks and the partner-supplied rep slug for rep-level ones.
      parameters:
        - schema:
            type: boolean
          in: query
          name: active_only
          required: false
          description: If true, only returns playbooks where is_active=true. Default false.
        - schema:
            type: string
            minLength: 1
            maxLength: 256
          in: query
          name: rep_id
          required: false
          description: >-
            Filter to playbooks scoped to this rep only. Omit to see org-level +
            every rep-level playbook in the org.
        - schema:
            type: string
            enum:
              - org
              - rep
          in: query
          name: scope
          required: false
          description: >-
            Filter by scope. `org` returns only org-level playbooks (where
            rep_id is null). `rep` returns only rep-level playbooks. Omit + omit
            `rep_id` to return everything. Mutually exclusive with `rep_id`
            (rep_id is more specific).
        - schema:
            type: integer
            minimum: 1
            maximum: 100
          in: query
          name: limit
          required: false
        - schema:
            type: string
          in: query
          name: cursor
          required: false
        - schema:
            type: string
          in: path
          name: org_id
          required: true
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key (pk_sandbox_* or pk_live_*)

````