# Operation Action Required Receive a request when an asynchronous operation reaches a status that requires an action to be taken for it to proceed. For example, when an operation changes to the SIGNATURE_REQUIRED status, a webhook would be delivered since the operation cannot continue with collecting a signature. Requests are sent to registered webhooks of type OPERATION_ACTION_REQUIRED Endpoint: POST OPERATION_ACTION_REQUIRED Version: 3.0.0 Security: ## Header parameters: - `x-ud-timestamp` (string, required) Timestamp when the webhook payload was created Example: 1686587938683 - `x-ud-signature` (string, required) Base64 encoded HMAC-SHA256 of the raw payload body bytes using the account's primary API key as the secret. Used to verify authenticity of the request. Example: "awqOJeH/5GSSesvPYgS2z62BFTYurPduEfJjUBTRzPg=" ## Request fields (application/json): - `@type` (string, required) Enum: "unstoppabledomains.com/partner.v3.WebhookDelivery" - `type` (string, required) Enum: "OPERATION_FINISHED", "OPERATION_ACTION_REQUIRED" - `data` (object, required) - `data.id` (string, required) Example: "op-4abb409c-9283-4589-bd36-d27a757a2165" - `data.status` (string, required) Enum: "QUEUED", "SIGNATURE_REQUIRED", "PROCESSING", "COMPLETED", "FAILED", "CANCELLED" - `data.domain` (string) - `data.lastUpdatedTimestamp` (number, required) Example: 1684356429790 - `data.dependencies` (array, required) ## Response 200 fields