Skip to main content
This webhook is sent when a party update request has failed.

Webhook Structure

eventType
string
required
The type of event. Value: PARTY_UPDATE_FAILED
payload
object
required
The event payload containing the details below

Payload Fields

payload.correlationId
string (UUID)
required
Unique identifier to correlate the request with the response
payload.eventId
string
required
Unique identifier for this event
payload.partyId
string (UUID)
required
Unique identifier of the party that failed to update
payload.errorMessage
string
required
Description of the error that caused the failure

Request Example

{
  "eventType": "PARTY_UPDATE_FAILED",
  "payload": {
    "correlationId": "8e4f2b5a-6c9d-43e7-af1b-2b4d6e8f0a3c",
    "eventId": "d4c9e7f6-2a5b-4dae-c4f8-3b7a9e1d5f2c",
    "partyId": "019cde42-0d74-7baf-1fa9-bd6a8b9e3c5f",
    "errorMessage": "An error occurred during the update of the Party"
  }
}