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

# Check DMARC reporting DNS

> Looks up the domain DMARC TXT record and verifies that its rua tag contains the assigned JetEmail aggregate-reporting address.



## OpenAPI

````yaml /openapi.json post /dmarc/domains/{uuid}/check
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:
  /dmarc/domains/{uuid}/check:
    post:
      tags:
        - DMARC
      summary: Check DMARC reporting DNS
      description: >-
        Looks up the domain DMARC TXT record and verifies that its rua tag
        contains the assigned JetEmail aggregate-reporting address.
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: DNS check completed; inspect verified for the result
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - verified
                  - dns
                properties:
                  success:
                    type: boolean
                    example: true
                  verified:
                    type: boolean
                    example: true
                  dns:
                    type: object
                    required:
                      - host
                      - type
                      - expected
                      - found
                    properties:
                      host:
                        type: string
                        example: _dmarc.example.com
                      type:
                        type: string
                        enum:
                          - TXT
                      expected:
                        type: string
                        example: >-
                          v=DMARC1; p=none;
                          rua=mailto:5e2f617ea64848ab9073@rua.jetsmtp.net
                      found:
                        type: string
                        nullable: true
                        description: Published TXT value, or null when no record was found.
        '400':
          description: Invalid domain UUID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '404':
          description: DMARC domain not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
        '500':
          description: DNS lookup or persistence failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmarcError'
components:
  schemas:
    DmarcError:
      type: object
      required:
        - error
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: Invalid domain
        code:
          type: string
          example: invalid_domain
        details:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````