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

# Newsletter Verify Email

> The only GET endpoint in the newsletter flow — `email` and `token` are query parameters, not body fields.



## OpenAPI

````yaml /openapi/content-management.json get /publisher/{publisher_id}/newsletter/verify-email/
openapi: 3.1.0
info:
  title: Publive Content Management API
  version: 1.0.0
  description: >-
    Read/write API for managing publisher content: categories, tags, posts, live
    blogs, media, custom content types, custom components, forms, reader
    accounts, and newsletter subscriptions.
servers:
  - url: https://cms.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Categories
  - name: Tags
  - name: Posts
  - name: Live Blogs
  - name: Media Library
  - name: Custom Content Types
  - name: Custom Components
  - name: Forms
  - name: Reader
  - name: Newsletter
paths:
  /publisher/{publisher_id}/newsletter/verify-email/:
    get:
      tags:
        - Newsletter
      summary: Newsletter Verify Email
      description: >-
        The only GET endpoint in the newsletter flow — `email` and `token` are
        query parameters, not body fields.
      operationId: newsletterVerifyEmail
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - name: email
          in: query
          required: true
          schema:
            type: string
        - name: token
          in: query
          required: true
          schema:
            type: string
          description: Verification token from the email link
      responses:
        '200':
          description: Verified
          content:
            application/json:
              example:
                status: ok
                message: email verified
        '400':
          description: Token expired or missing params
        '404':
          description: Subscriber not found
      security: []
components:
  parameters:
    PublisherId:
      name: publisher_id
      in: path
      required: true
      schema:
        type: string
      description: Your Publisher ID
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.

````