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

# Listar formularios

> Lista formularios de captura.



## OpenAPI

````yaml /es/marketing-addons-api/api-reference/openapi-marketing-addons.json get /v1/forms/lists
openapi: 3.0.3
info:
  title: 'Notifique API: Formularios (complemento de marketing)'
  description: >-
    API v1 para **formularios de marketing** (plantillas: EN BLANCO, CONTACTO,
    ENCUESTA, LISTA DE ESPERA, BOLETÍN) en `/v1/forms`.


    **Autenticación:** `Authorization: Bearer sk_live_xxxxx` o encabezado
    `x-api-key`.


    **Alcances:**

    - **forms:manage**, listar, crear, actualizar y eliminar formularios; listar
    inscripciones.

    - **formularios:enviar**: crea suscripciones, confirma la doble suscripción
    y cancela.


    **Validación:** Los envíos de API se validan según el esquema de formulario
    `hostedPageForm`.


    **Webhooks:** `form.submitted`, `form.confirmed`, `form.unsubscribed`.


    **403** con `code: ONBOARDING_REQUIRED` si la incorporación no se completa.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Producción
security:
  - ntfAddonsBearerAuth: []
  - ntfAddonsApiKeyHeader: []
tags:
  - name: Forms
    description: >-
      Formularios de marketing unificados (`/v1/forms/*`). Alcances:
      **formularios:administrar**, **formularios:enviar**.
paths:
  /v1/forms/lists:
    get:
      tags:
        - Forms
      summary: Listar formularios
      description: Lista formularios de captura.
      operationId: ntfAddons_getV1FormsLists
      parameters:
        - name: page
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Lista paginada
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfAddons_FormListCollectionEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          $ref: '#/components/responses/PaymentRequired'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    NtfAddons_FormListCollectionEnvelope:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/NtfAddons_FormList'
        pagination:
          $ref: '#/components/schemas/NtfAddons_Pagination'
    NtfAddons_FormList:
      type: object
      required:
        - id
        - addonType
        - template
        - features
        - name
        - status
        - doubleOptInEnabled
        - subscriptionsCount
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
        addonType:
          type: string
          enum:
            - FORM
        template:
          type: string
          enum:
            - BLANK
            - CONTACT
            - SURVEY
            - WAITLIST
            - NEWSLETTER
        features:
          $ref: '#/components/schemas/NtfAddons_FormFeatures'
        name:
          type: string
        status:
          $ref: '#/components/schemas/NtfAddons_MarketingListStatus'
        doubleOptInEnabled:
          type: boolean
          description: Siempre falso para la plantilla NEWSLETTER.
        endedMessage:
          type: string
          nullable: true
        hostedPageTheme:
          type: object
          nullable: true
          description: Tema de página alojada.
        hostedPageCopy:
          type: object
          nullable: true
          description: Textos de páginas alojadas.
        hostedPageForm:
          type: object
          nullable: true
          description: Esquema de campo de formulario.
        subscriptionsCount:
          type: integer
          minimum: 0
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    NtfAddons_Pagination:
      type: object
      properties:
        total:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        totalPages:
          type: integer
    NtfAddons_ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          description: >-
            Etiqueta de error de estilo HTTP (por ejemplo, no autorizado,
            solicitud incorrecta, no encontrada).
        message:
          type: string
          description: >-
            Mensaje legible por humanos para usuarios finales (localizado a
            través de Accept-Language/x-locale cuando corresponda).
        code:
          type: string
          description: >-
            Código API v1 estable (enumeración). Siempre presente en los
            errores. Úselo con el estado HTTP para decidir reintentar o
            corregir. Ver [Respuestas de
            error](/es/guides/conceitos/resposta-de-erros).
      required:
        - success
        - error
        - message
        - code
    NtfAddons_FormFeatures:
      type: object
      properties:
        queue:
          type: boolean
        doubleOptIn:
          type: boolean
        captureContact:
          type: boolean
    NtfAddons_MarketingListStatus:
      type: string
      enum:
        - ACTIVE
        - PAUSED
        - CLOSED
        - ENDED
  responses:
    Unauthorized:
      description: Clave API faltante o no válida
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfAddons_ErrorResponse'
    PaymentRequired:
      description: Plan vencido o espacio de trabajo suspendido
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfAddons_ErrorResponse'
    Forbidden:
      description: Alcance insuficiente o incorporación incompleta (`ONBOARDING_REQUIRED`)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfAddons_ErrorResponse'
  securitySchemes:
    ntfAddonsBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Autorización: Portador sk_live_xxxxx'
    ntfAddonsApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````