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

# Confirm a signup



## OpenAPI

````yaml /openapi.json get /forms/confirm/{token}
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Email
    description: Send transactional email
  - name: Outbound
    description: 'Outbound sending: keys, SMTP users, domains, logs, suppression'
  - name: Inbound
    description: Inbound routing, domains and forward destinations
  - name: DMARC
    description: DMARC aggregate-report domain setup, DNS verification and analytics
  - name: Marketing
    description: >-
      Marketing suite: templates, audiences, contacts, broadcasts, themes,
      assets and signup forms
  - name: Signup Forms
    description: Hosted signup pages and form submissions
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /forms/confirm/{token}:
    get:
      tags:
        - Signup Forms
      summary: Confirm a signup
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
            minLength: 40
            maxLength: 128
      responses:
        '200':
          description: Confirmation result
          content:
            text/html:
              schema:
                type: string
        '303':
          description: Confirmed and redirected
          headers:
            Location:
              schema:
                type: string
                format: uri
        '404':
          description: Confirmation not available
          content:
            text/html:
              schema:
                type: string
        '410':
          description: Confirmation expired
          content:
            text/html:
              schema:
                type: string
      security: []
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````