> ## 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 contact list items

> Page through the phone numbers in a contact list.



## OpenAPI

````yaml api-reference/campaign-audience/openapi.json GET /v1/calls/contact-lists/{id}/items
openapi: 3.0.3
info:
  title: Persistence Campaign Audience API
  version: '1.0'
  description: Manage the contact lists that define who a campaign calls.
servers:
  - url: https://api.persistence.dev
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Campaign audience
    description: Contact list management and CSV upload.
paths:
  /v1/calls/contact-lists/{id}/items:
    get:
      tags:
        - Campaign audience
      summary: List contact list items
      description: >-
        List the phone numbers in a contact list, along with any metadata
        imported from the CSV file. Results are paginated.
      operationId: listContactListItems
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Contact list 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
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactListItemsResponse'
        '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:
    ContactListItemsResponse:
      type: object
      properties:
        entries:
          $ref: '#/components/schemas/PagedContactListItems'
        id:
          type: string
        name:
          type: string
        status:
          $ref: '#/components/schemas/ContactListStatus'
        totalEntries:
          type: integer
        type:
          $ref: '#/components/schemas/ContactListType'
    Error:
      type: object
      properties:
        code:
          type: string
        error:
          type: string
    PagedContactListItems:
      type: object
      properties:
        column:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/ContactListItem'
        order:
          $ref: '#/components/schemas/SortOrder'
        page:
          type: integer
        perPage:
          type: integer
        searchText:
          type: string
        totalCount:
          type: integer
    ContactListStatus:
      type: string
      enum:
        - ready
        - draft
        - archived
      x-enum-varnames:
        - ContactListStatusReady
        - ContactListStatusDraft
        - ContactListStatusArchived
    ContactListType:
      type: string
      enum:
        - contacts
        - dnd
        - batch
      x-enum-varnames:
        - ContactListTypeContacts
        - ContactListTypeDND
        - ContactListTypeBatch
    ContactListItem:
      type: object
      properties:
        metadata:
          type: object
          additionalProperties: {}
        phoneNumber:
          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.

````