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

# Get unsubscribe page settings

> Returns the account's unsubscribe confirm/success page customization, the default copy used for empty fields, and whether the plan may hide the "Powered by JetEmail" footer.



## OpenAPI

````yaml /openapi.json get /marketing/unsubscribe-page
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: Marketing
    description: >-
      Marketing suite: templates, audiences, contacts, broadcasts, themes,
      assets
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /marketing/unsubscribe-page:
    get:
      tags:
        - Marketing
      summary: Get unsubscribe page settings
      description: >-
        Returns the account's unsubscribe confirm/success page customization,
        the default copy used for empty fields, and whether the plan may hide
        the "Powered by JetEmail" footer.
      responses:
        '200':
          description: Settings
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  settings:
                    $ref: '#/components/schemas/MarketingUnsubPageSettings'
                  defaults:
                    type: object
                    additionalProperties:
                      type: string
                  canHideBranding:
                    type: boolean
components:
  schemas:
    MarketingUnsubPageSettings:
      type: object
      properties:
        logo_url:
          type: string
          description: https:// logo URL, empty for none
        heading:
          type: string
          description: Confirm page heading (empty → default)
        message:
          type: string
          description: Confirm page body text (empty → default)
        button_label:
          type: string
          description: Confirm button label (empty → default)
        success_heading:
          type: string
          description: Success page heading (empty → default)
        success_message:
          type: string
          description: Success page body text (empty → default)
        hide_branding:
          type: boolean
          description: Hide the "Powered by JetEmail" footer (paid plans)
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````