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

# List campaign contacts

> Page through the contacts in a campaign and their call status.



## OpenAPI

````yaml api-reference/campaigns/openapi.json GET /v1/calls/campaigns/{id}/contacts
openapi: 3.0.3
info:
  title: Persistence Campaigns API
  version: '1.0'
  description: Create and run outbound calling campaigns.
servers:
  - url: https://api.persistence.dev
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Campaigns
    description: Campaign creation and lifecycle control.
paths:
  /v1/calls/campaigns/{id}/contacts:
    get:
      tags:
        - Campaigns
      summary: List campaign contacts
      description: >-
        List the contacts in a campaign, along with each contact's call status
        and attempt count. Results are paginated.
      operationId: listCampaignContacts
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Campaign ID
        - name: page
          in: query
          required: false
          schema:
            type: integer
          description: Page number
        - name: perPage
          in: query
          required: false
          schema:
            type: integer
          description: Items per page
        - name: status
          in: query
          required: false
          schema:
            type: string
          description: Contact status filter
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CampaignContactListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    CampaignContactListResponse:
      type: object
      properties:
        column:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/CampaignContact'
        order:
          $ref: '#/components/schemas/SortOrder'
        page:
          type: integer
        perPage:
          type: integer
        searchText:
          type: string
        totalCount:
          type: integer
    Error:
      type: object
      properties:
        code:
          type: string
        error:
          type: string
    CampaignContact:
      type: object
      properties:
        attempts:
          type: integer
        createdAt:
          type: string
        phoneNumber:
          type: string
        status:
          type: string
        updatedAt:
          type: string
    SortOrder:
      type: string
      enum:
        - ASC
        - DESC
      x-enum-varnames:
        - SortOrderAsc
        - SortOrderDesc
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key issued for your workspace.

````