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

# List call history



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/v1/campaigns/recordings/
openapi: 3.0.3
info:
  title: Rezora IO API
  version: 1.0.0
  description: >-
    Partner-safe Rezora API reference for authenticated customer and integration
    workflows.
servers:
  - url: https://api.rezora.io
    description: Production API
security: []
tags:
  - name: Billing & Credits
    description: Credit balances, transactions, and receipts.
  - name: Agents
    description: AI agent templates and active campaign-ready agents.
  - name: Contacts
    description: Contact groups, contacts, and imports.
  - name: Campaigns
    description: Campaign creation, dispatch, reporting, recordings, and call attempts.
  - name: Appointments & Calls
    description: Booked appointments and customer call records.
paths:
  /api/v1/campaigns/recordings/:
    get:
      tags:
        - Campaigns
      summary: List call history
      operationId: campaigns_list_call_history
      parameters:
        - in: query
          name: attempt
          schema:
            type: string
            format: uuid
        - in: query
          name: date
          schema:
            type: string
        - in: query
          name: limit
          schema:
            type: integer
          description: Maximum number of rows to return.
        - in: query
          name: offset
          schema:
            type: integer
          description: Zero-based pagination offset.
        - in: query
          name: outcome
          schema:
            type: string
        - in: query
          name: search
          schema:
            type: string
        - in: query
          name: sentiment
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CampaignAttemptResponseSchema'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    CampaignAttemptResponseSchema:
      type: object
      properties:
        id:
          type: string
          format: uuid
        contactId:
          type: string
          format: uuid
          nullable: true
        campaignId:
          type: string
          format: uuid
          nullable: true
        contactName:
          type: string
        phoneNumber:
          type: string
        campaignName:
          type: string
        callStatus:
          type: string
          nullable: true
        durationSeconds:
          type: integer
          nullable: true
        summary:
          type: string
          nullable: true
        sentiment:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
          nullable: true
      required:
        - id
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````