> ## 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 domain settings

> Retrieves email settings for a specific domain including BCC emails, open tracking, and click tracking



## OpenAPI

````yaml /openapi.json get /outbound/domains/{uuid}/settings
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: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /outbound/domains/{uuid}/settings:
    get:
      tags:
        - Outbound
      summary: Get domain settings
      description: >-
        Retrieves email settings for a specific domain including BCC emails,
        open tracking, and click tracking
      parameters:
        - name: uuid
          in: path
          required: true
          description: UUID of the domain to get settings for
          schema:
            type: string
            pattern: >-
              ^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
            example: b814c25d-b18c-4044-ae31-49e22ce908b5
      responses:
        '200':
          description: Domain settings retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  settings:
                    type: object
                    properties:
                      uuid:
                        type: string
                        description: Domain UUID
                        example: b814c25d-b18c-4044-ae31-49e22ce908b5
                      domain:
                        type: string
                        description: Domain name
                        example: example.com
                      bccEmails:
                        type: array
                        items:
                          type: object
                          properties:
                            email:
                              type: string
                              format: email
                              description: BCC email address
                            status:
                              type: integer
                              enum:
                                - 0
                                - 1
                              description: >-
                                Verification status (0 = pending verification, 1
                                = verified)
                          required:
                            - email
                            - status
                        description: Array of BCC email addresses with verification status
                        example:
                          - email: admin@example.com
                            status: 1
                          - email: pending@example.com
                            status: 0
                      openTracking:
                        type: boolean
                        description: Whether open tracking is enabled
                        example: true
                      clickTracking:
                        type: boolean
                        description: Whether click tracking is enabled
                        example: false
                      tracking_domain:
                        type: string
                        nullable: true
                        example: links.example.com
                      tracking_verified:
                        type: boolean
                        example: false
        '400':
          description: Bad Request - Invalid UUID format
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Invalid UUID format
        '401':
          description: Unauthorized - User not authenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: User information not found
        '404':
          description: Not Found - Domain not found or access denied
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Domain not found or access denied
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to retrieve domain settings
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````