---
title: "Get pending operations for multiple domains"
method: POST
path: "/mcp/v1/actions/ud_domain_pending_operations"
tags: ["DNS Management"]
---

# Get pending operations for multiple domains

`POST /mcp/v1/actions/ud_domain_pending_operations`

Check status of DNS operations across multiple domains. Use to track changes and verify completion after bulk operations.

## Request body

- object
  - `domains` object[], required — Array of domains to check for pending operations
    - `name` string, required — Domain name
  - `includeCompleted` boolean — Include completed operations (last 24h)

## Response `200`

Pending operations for all domains

- PendingOperationsResponse — Bulk response for pending operations across multiple domains
  - `results` object[]
    - `domain` string — Domain name
    - `success` boolean — Whether the lookup succeeded
    - `hasPendingOperations` boolean — Whether any operations are still in progress
    - `operations` object[]
      - `id` string — Operation ID
      - `type` string — Operation type
      - `status` string — UserOperationStatus string, e.g. PENDING, PENDING_SIGNATURE, COMPLETED, FAILED
      - `createdAt` string
      - `updatedAt` string
      - `originOperationId` string, nullable — ID of the originating operation, if any
      - `errorCode` string, nullable — Error code if the operation failed, otherwise null
    - `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
    - `totalPendingCount` number — Total pending operations across all domains
    - `domainsWithPending` string[] — List of domain names with pending operations

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.net/unstoppabledomains/apis/user-api.md) · [All operations](https://skmtc.net/unstoppabledomains/apis/user-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unstoppabledomains/user-api/revisions/c1def8e34b41/schema)
