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

# Listar respuestas



## OpenAPI

````yaml GET /v1/forms/submissions
openapi: 3.1.0
info:
  title: EdTools Client API
  version: 1.0.0
  description: >-
    Stable server-to-server API for tenant-owned EdTools integrations. Public
    docs disable the playground; use your own secure client or Postman workspace
    for real tokens.
servers:
  - url: https://app.edtools.co/api/client
    description: Production
  - url: http://localhost:3000/api/client
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Client API
    description: Identity and token introspection.
  - name: Students
    description: Student reads, writes and external-id sync.
  - name: Admissions
    description: Admission applications, pipeline statuses and contacts.
  - name: Payments
    description: Payment and obligation reads, writes and external-id sync.
  - name: Programs
    description: Current academic program catalog.
  - name: Courses
    description: Current academic course catalog.
  - name: Forms
    description: Read-only form templates and submissions.
  - name: Vault
    description: Document types, documents, requirements and requests.
paths:
  /v1/forms/submissions:
    get:
      tags:
        - Forms
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
            default: 1
          required: false
          name: page
          in: query
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
            maximum: 100
            default: 20
          required: false
          name: limit
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: updatedSince
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: templateId
          in: query
        - schema:
            type: string
            enum:
              - standalone
              - admission_application
              - student
              - contact
              - appointment
              - pqrs_case
          required: false
          name: entityKind
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: entityId
          in: query
      responses:
        '200':
          description: Form submissions
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        templateId:
                          type: string
                          format: uuid
                        versionId:
                          type: string
                          format: uuid
                        entityKind:
                          type: string
                          enum:
                            - standalone
                            - admission_application
                            - student
                            - contact
                            - appointment
                            - pqrs_case
                        entityId:
                          type: string
                          nullable: true
                          format: uuid
                        submittedViaPublic:
                          type: boolean
                        status:
                          type: string
                          enum:
                            - draft
                            - submitted
                        submittedAt:
                          type: string
                          nullable: true
                        submitterMetadata:
                          type: object
                          additionalProperties:
                            nullable: true
                        answers:
                          type: object
                          additionalProperties:
                            nullable: true
                        createdAt:
                          type: string
                      required:
                        - id
                        - templateId
                        - versionId
                        - entityKind
                        - entityId
                        - submittedViaPublic
                        - status
                        - submittedAt
                        - submitterMetadata
                        - answers
                        - createdAt
                  pagination:
                    type: object
                    properties:
                      page:
                        type: number
                      limit:
                        type: number
                      total:
                        type: number
                      totalPages:
                        type: number
                    required:
                      - page
                      - limit
                      - total
                      - totalPages
                required:
                  - data
                  - pagination
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: EdTools service token

````