> ## 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.

# Push Notification HTML

> Returns one of the push-notification helper HTML files.

<Warning>Returns 404 if push notifications aren't enabled for this publisher.</Warning>
<Info>Resolution checks a publisher-specific S3 override first, then falls back to the shared Publive CDN default — content can differ per publisher.</Info>



## OpenAPI

````yaml /openapi/content-delivery.json get /publisher/{publisher_id}/static/{filename}/
openapi: 3.1.0
info:
  title: Publive Content Delivery API
  version: 1.0.0
  description: >-
    Read-only API for delivering publisher content, configuration, and static
    assets. All endpoints require HTTP Basic Auth and are GET requests.
servers:
  - url: https://cds.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Site Configuration
  - name: Content
  - name: Posts
  - name: Forms
  - name: Static Files
  - name: Sitemaps
paths:
  /publisher/{publisher_id}/static/{filename}/:
    get:
      tags:
        - Static Files
      summary: Push Notification HTML
      description: >-
        Returns one of the push-notification helper HTML files.


        <Warning>Returns 404 if push notifications aren't enabled for this
        publisher.</Warning>

        <Info>Resolution checks a publisher-specific S3 override first, then
        falls back to the shared Publive CDN default — content can differ per
        publisher.</Info>
      operationId: getPushNotificationHtml
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - name: filename
          in: path
          required: true
          schema:
            type: string
            enum:
              - izooto.html
              - helper-iframe.html
              - permission-dialog.html
      responses:
        '200':
          description: HTML content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticContentEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Push notifications not enabled
          content:
            application/json:
              example:
                detail: Push notifications are not enabled for this publisher
components:
  parameters:
    PublisherId:
      name: publisher_id
      in: path
      required: true
      schema:
        type: string
      description: Your Publisher ID
  schemas:
    StaticContentEnvelope:
      type: object
      properties:
        status:
          type: string
        data:
          type: object
          properties:
            content:
              type: string
    ErrorDetail:
      type: object
      properties:
        detail:
          type: string
  responses:
    Unauthorized:
      description: Invalid or missing credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorDetail'
          example:
            detail: Invalid Auth Credentials
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.

````