# Get pending operations for multiple domains Check status of DNS operations across multiple domains. Use to track changes and verify completion after bulk operations. Endpoint: POST /mcp/v1/actions/ud_domain_pending_operations Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `domains` (array, required) Array of domains to check for pending operations - `domains.name` (string, required) Domain name - `includeCompleted` (boolean) Include completed operations (last 24h) ## Response 200 fields (application/json): - `results` (array) - `results.domain` (string) Domain name - `results.success` (boolean) Whether the lookup succeeded - `results.hasPendingOperations` (boolean) Whether any operations are still in progress - `results.operations` (array) - `results.operations.id` (string) Operation ID - `results.operations.type` (string) Operation type - `results.operations.status` (string) UserOperationStatus string, e.g. PENDING, PENDING_SIGNATURE, COMPLETED, FAILED - `results.operations.createdAt` (string) - `results.operations.updatedAt` (string) - `results.operations.originOperationId` (string,null) ID of the originating operation, if any - `results.operations.errorCode` (string,null) Error code if the operation failed, otherwise null - `results.error` (string) Error message (if lookup failed) - `successCount` (number) Number of domains successfully queried - `failureCount` (number) Number of domains that failed lookup - `summary` (object) Aggregate summary across all domains - `summary.totalPendingCount` (number) Total pending operations across all domains - `summary.domainsWithPending` (array) List of domain names with pending operations ## Response 401 fields