# Remove Tags From Domains

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v2/domains/tags/remove:
    post:
      summary: Remove Tags From Domains
      deprecated: false
      description: >-
        Removes one or more tags from domains in bulk. You can target specific
        domains using domainIds or apply filters to match domains dynamically.
      tags:
        - domains
      parameters:
        - name: x-auth-zapmail
          in: header
          description: ''
          required: true
          example: YOUR_API_KEY
          schema:
            type: string
        - name: x-workspace-key
          in: header
          description: ''
          required: false
          example: workspace_id
          schema:
            type: string
        - name: x-service-provider
          in: header
          description: ''
          required: false
          example: GOOGLE
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                tagIds:
                  type: array
                  items:
                    type: string
                domainIds:
                  type: array
                  items:
                    type: string
                contains:
                  type: string
                status:
                  type: array
                  items:
                    type: string
              required:
                - tagIds
                - domainIds
                - contains
                - status
              x-apidog-orders:
                - tagIds
                - domainIds
                - contains
                - status
            example:
              tagIds:
                - tag-uuid-1
                - tag-uuid-2
              domainIds:
                - domain-uuid-1
                - domain-uuid-2
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  message:
                    type: string
                required:
                  - status
                  - message
                x-apidog-orders:
                  - status
                  - message
              example:
                status: 200
                message: Domains Tags Deleted Successfully
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: domains
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/797058/apis/api-33939466-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.zapmail.ai/api
    description: Prod Env
security: []

```
