# Remove tags from domains Remove tags from domains in your portfolio. Supports bulk operations for up to 50 domains. Endpoint: POST /mcp/v1/actions/ud_domain_tags_remove Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `domains` (array, required) Array of domain names to remove tags from (e.g., ["example.com", "mysite.io"]) Example: ["example.com","mysite.io"] - `tags` (array, required) Array of tag names to remove (e.g., ["Work", "Old"]) Example: ["Work","Old"] ## Response 200 fields (application/json): - `results` (array) Results for each domain - `results.domain` (string) Domain name - `results.success` (boolean) Whether tags were removed successfully - `results.tagsRemoved` (array) Tags that were removed from this domain - `results.error` (string) Error message if failed - `successCount` (number) Number of domains with tags removed - `failureCount` (number) Number of domains that failed ## Response 401 fields