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

# List All Enrollment History

> Cross-workflow enrollment history for the company. Same shape as the per-workflow enrollment list, with an extra `workflow_id` filter.



## OpenAPI

````yaml GET /workflow/enrollments/history/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /workflow/enrollments/history/:
    get:
      tags:
        - workflow
      summary: List All Enrollment History
      description: >-
        Cross-workflow enrollment history for the company. Same shape as the
        per-workflow enrollment list, with an extra `workflow_id` filter.
      operationId: workflow_enrollments_history_retrieve
      parameters:
        - in: query
          name: executed
          schema:
            type: boolean
        - in: query
          name: page
          schema:
            type: integer
            default: 1
        - in: query
          name: search
          schema:
            type: string
          description: Partial match on contact info or workflow name.
        - in: query
          name: status
          schema:
            type: string
        - in: query
          name: workflow_id
          schema:
            type: string
            format: uuid
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllEnrollmentHistoryResponse'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    AllEnrollmentHistoryResponse:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowEnrollment'
        total:
          type: integer
        page:
          type: integer
        page_size:
          type: integer
        total_pages:
          type: integer
      required:
        - page
        - page_size
        - results
        - total
        - total_pages
    WorkflowEnrollment:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        workflow:
          type: string
          format: uuid
        contact:
          type: string
          format: uuid
        status:
          $ref: '#/components/schemas/WorkflowEnrollmentStatusEnum'
        executed_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        contact_name:
          type: string
          readOnly: true
        contact_phone:
          type: string
          readOnly: true
        contact_email:
          type: string
          format: email
          readOnly: true
        workflow_name:
          type: string
          readOnly: true
        current_action:
          type: string
          readOnly: true
      required:
        - contact
        - contact_email
        - contact_name
        - contact_phone
        - created_at
        - current_action
        - executed_at
        - id
        - workflow
        - workflow_name
    WorkflowEnrollmentStatusEnum:
      enum:
        - pending
        - waiting
        - executed
        - error
        - removed
      type: string
      description: |-
        * `pending` - Pending
        * `waiting` - Waiting
        * `executed` - Executed
        * `error` - Error
        * `removed` - Removed
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````