# Pending Operations for a domain Unlike the operation list route, this endpoint will return a minimal representation of pending operations for a domain across all activity for a given domain. Since we only allow a single concurrent operation for a domain (across all accounts), this endpoint should be checked before attempting any domain operations. This is particularly important for self-custody domains, as any account (or even the owner themself) can initiate operations. Endpoint: GET /domains/{name}/pending-operations Version: 3.0.0 Security: bearer ## Path parameters: - `name` (string, required) ## Response 200 fields (application/json): - `@type` (string, required) Enum: "unstoppabledomains.com/partner.v3.List" - `items` (array, required) - `items.type` (any, required) Will be UNKNOWN if the operation is a blockchain operation not supported by the API but currently taking place on the blockchain. Example: "DOMAIN_UPDATE" - `items.id` (string) ID of the operation. Will only be included if the operation is associated with your account. Example: "op-4abb409c-9283-4589-bd36-d27a757a2165" ## Response 403 fields (application/json): - `code` (string) Example: "FORBIDDEN"