Skip to main content
This webhook is sent when a party creation 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: party.creation-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.partyType
string
required
Type of the party that failed to create. Available values: INDIVIDUAL, ORGANISATION
data.errorCode
string
required
Error code indicating the reason for the failure
data.errorMessage
string
required
Description of the error that caused the failure

Request Example

{
  "id": "a3f8e2b1-5c7d-4e9f-b8a2-1d4c6e9f0a3b",
  "time": "2025-01-15T10:30:00Z",
  "type": "party.creation-failed",
  "correlationId": "550e8400-e29b-41d4-a716-446655440000",
  "data": {
    "partyType": "INDIVIDUAL",
    "errorCode": "DUPLICATE_PARTY",
    "errorMessage": "Party with this email already exists"
  }
}
Last modified on March 25, 2026