Skip to main content
This webhook is sent when a party update 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.update-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.partyId
string (UUID)
required
Unique identifier of the party that failed to update
data.errors
array
required
List of errors that caused the failure

Request Example

{
  "id": "d4c9e7f6-2a5b-4dae-c4f8-3b7a9e1d5f2c",
  "time": "2025-01-15T10:30:00Z",
  "type": "party.update-failed",
  "correlationId": "8e4f2b5a-6c9d-43e7-af1b-2b4d6e8f0a3c",
  "data": {
    "partyId": "019cde42-0d74-7baf-1fa9-bd6a8b9e3c5f",
    "errors": [
      {
        "code": "PARTY_NOT_FOUND",
        "message": "An error occurred during the update of the Party"
      }
    ]
  }
}
Last modified on April 9, 2026