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

# Get apiv2organizations trainingcalls



## OpenAPI

````yaml https://api.osiro.com/doc get /api/v2/organizations/{orgId}/training/calls
openapi: 3.0.0
info:
  title: osiro API
  version: 2.0.0
servers: []
security: []
tags:
  - name: Funnel
    description: Public funnel rendering, submission, MFA, and analytics.
  - name: Training
    description: Org-scoped sales-training catalogs, sessions, and call records.
  - name: Attribution
    description: Cross-domain PostHog identity handoff for the marketing site.
paths:
  /api/v2/organizations/{orgId}/training/calls:
    get:
      tags:
        - Training
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: orgId
          in: path
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          required: false
          name: limit
          in: query
        - schema:
            type: integer
            nullable: true
            minimum: 0
            default: 0
          required: false
          name: offset
          in: query
        - schema:
            type: string
            enum:
              - pending
              - processing
              - ready
              - failed
              - abandoned
          required: false
          name: status
          in: query
        - schema:
            type: string
          required: false
          name: q
          in: query
      responses:
        '200':
          description: The organization's training calls, newest first
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrainingCallList'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    TrainingCallList:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
            format: uuid
          orgId:
            type: string
            format: uuid
          userId:
            type: string
            format: uuid
          caseId:
            type: string
          personaId:
            type: string
          conversationId:
            type: string
            nullable: true
          agentId:
            type: string
            nullable: true
          status:
            type: string
            enum:
              - pending
              - processing
              - ready
              - failed
              - abandoned
          durationSeconds:
            type: integer
            nullable: true
          recordingKey:
            type: string
            nullable: true
          failureReason:
            type: string
            nullable: true
          createdAt:
            type: string
          updatedAt:
            type: string
        required:
          - id
          - orgId
          - userId
          - caseId
          - personaId
          - conversationId
          - agentId
          - status
          - durationSeconds
          - recordingKey
          - failureReason
          - createdAt
          - updatedAt
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
      required:
        - error

````