# Verify Name Server Propagation

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v2/domains/name-servers/verify:
    post:
      summary: Verify Name Server Propagation
      deprecated: true
      description: >
        # Verify Name Servers for Domain Connection with Zapmail


        This endpoint verifies the name servers you have added to connect your
        domain with Zapmail.


        ## Endpoint


        ## Request Body


        | Name        | Type   | Description |

        |-------------|--------|-------------|

        | `domainName` | `string` | The domain name for which you want to verify
        name servers. |


        ## Example Request


        ```json

        {
            "domainName": "yourdomain.com"
        }
      tags:
        - domains
      parameters:
        - name: x-auth-zapmail
          in: header
          description: ''
          required: true
          example: '{{x-auth-zapmail}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: domains
      x-apidog-status: deprecated
      x-run-in-apidog: https://app.apidog.com/web/project/797058/apis/api-13520984-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.zapmail.ai/api
    description: Prod Env
security: []

```
