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

# Lista las evaluaciones de un viaje, las más recientes primero



## OpenAPI

````yaml /openapi-v1.es.json get /v1/journeys/{id}/enrollments
openapi: 3.0.0
info:
  title: Woku Client API v1
  description: >-
    API REST pública para la administración programática de programas
    Voice-of-Customer de woku: trackers, instrumentos VoC (NPS, woku, CES,
    CSAT), planes de acción, tickets de soporte, envío multicanal y captura de
    respuestas. Las solicitudes están delimitadas por empresa mediante la clave
    API. Nunca envíe un id de empresa.
  version: 1.0.0
  contact:
    name: Woku
    url: https://woku.app
    email: team@woku.app
servers:
  - url: https://clientapi.woku.app
    description: Producción
security: []
tags: []
paths:
  /v1/journeys/{id}/enrollments:
    get:
      tags:
        - v1 - journeys
      summary: Lista las evaluaciones de un viaje, las más recientes primero
      operationId: V1JourneysController_listParticipations
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
        - name: cursor
          required: false
          in: query
          schema:
            type: string
            format: ObjectId
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V1JourneyParticipationPageDto'
        '400':
          description: Identificador o configuración del viaje inválidos
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponseDto'
        '403':
          description: Clave de API, acceso a la empresa o permiso inválidos
        '404':
          description: Viaje, momento o evaluación no encontrados
      security:
        - bearer: []
components:
  schemas:
    V1JourneyParticipationPageDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/V1JourneyParticipationDto'
        nextCursor:
          type: string
          description: >-
            Presente solo si existe otra página; omite cursor en la primera
            página.
      required:
        - items
    ValidationErrorResponseDto:
      type: object
      properties:
        statusCode:
          type: number
          description: Código de estado HTTP
          example: 400
        message:
          description: Arreglo de mensajes de error de validación
          example:
            - email must be a valid email
            - password must be at least 8 characters
          type: array
          items:
            type: string
        error:
          type: string
          description: Tipo de error
          example: Bad Request
      required:
        - statusCode
        - message
        - error
    V1JourneyParticipationDto:
      type: object
      properties:
        id:
          type: string
        subjectKey:
          type: string
        contact:
          $ref: '#/components/schemas/V1JourneyContactDto'
        lifecycle:
          type: string
          enum:
            - pending
            - running
            - stopping
            - stopped
            - completed
        definitionVersion:
          type: number
        startedAt:
          type: string
          format: date-time
        startSource:
          type: string
          enum:
            - operator
            - response
            - webhook
        stoppedAt:
          type: string
          format: date-time
        completedAt:
          type: string
          format: date-time
        stopRequestedAt:
          type: string
          format: date-time
        stoppedBy:
          type: string
        stopReason:
          type: string
        dispatchOutcomeUncertain:
          type: boolean
        createdAt:
          type: string
          format: date-time
        pendingMoments:
          type: array
          items:
            $ref: '#/components/schemas/V1JourneyPendingMomentDto'
        moments:
          type: array
          items:
            $ref: '#/components/schemas/V1JourneyMomentProgressDto'
        next:
          type: object
          nullable: true
          properties:
            stageKey:
              type: string
            name:
              type: string
            source:
              type: string
              enum:
                - operator
                - response
                - webhook
                - timer
                - fallback
            scheduledFor:
              type: string
              format: date-time
          required:
            - stageKey
            - name
            - source
      required:
        - id
        - subjectKey
        - contact
        - lifecycle
        - dispatchOutcomeUncertain
        - pendingMoments
        - moments
        - next
    V1JourneyContactDto:
      type: object
      properties:
        email:
          type: string
          format: email
          example: cliente@example.com
        phone:
          type: string
          description: Teléfono con código de país, solo dígitos
          example: '56911111111'
    V1JourneyPendingMomentDto:
      type: object
      properties:
        key:
          type: string
        name:
          type: string
      required:
        - key
    V1JourneyMomentProgressDto:
      type: object
      properties:
        key:
          type: string
        name:
          type: string
        status:
          type: string
          enum:
            - pending
            - active
            - sent
            - responded
            - done
            - skipped
        toolId:
          type: string
        toolType:
          type: string
          enum:
            - woku
            - csat
            - ces
            - nps
            - flow
            - form
        toolScope:
          type: string
          enum:
            - shared
            - per_enrollment
        sentAt:
          type: string
          format: date-time
        respondedAt:
          type: string
          format: date-time
        activationSource:
          type: string
          enum:
            - operator
            - response
            - webhook
            - timer
            - fallback
        hookReceivedAt:
          type: string
          format: date-time
      required:
        - key
        - name
        - status
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Clave API secreta de la empresa.

````