Skip to main content
This webhook is sent when an account unblock request has failed.

Webhook Structure

id
string (UUID)
required
Unique identifier for this event
time
string (ISO 8601)
required
Timestamp of when the event occurred
type
string
required
The type of event. Value: account.unblock-failed
correlationId
string
Identifier to correlate the request with the response. Present when provided in the original request.
data
object
required
The event data containing the details below

Data Fields

data.accountId
string (UUID)
required
Unique identifier of the account that failed to unblock
data.errors
array
required
List of errors that caused the failure

Request Example

{
  "id": "a0b6c4d7-8ebf-45a9-cb3d-4d6f8a0b2c5e",
  "time": "2025-01-15T10:30:00Z",
  "type": "account.unblock-failed",
  "correlationId": "f6eba9b8-4c7d-4fc0-e6ba-5d9c1a3f7b4e",
  "data": {
    "accountId": "019cde44-2f96-7dc1-31cb-df8cade5e7b0",
    "errors": [
      {
        "code": "ACCOUNT_NOT_BLOCKED",
        "message": "An error occurred while unblocking the account"
      }
    ]
  }
}
Last modified on April 9, 2026