Skip to main content
This webhook is sent when a party (individual or organisation) has been successfully updated in the system.

Webhook Structure

eventType
string
required
The type of event. Value: PARTY_UPDATED
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 updated party
payload.partyType
string
required
Type of the party. Available values: INDIVIDUAL, ORGANISATION
payload.updatedAt
string (ISO 8601)
required
Timestamp of when the party was updated

Request Example

{
  "eventType": "PARTY_UPDATED",
  "payload": {
    "correlationId": "7d3e1a4f-5b8c-42d6-9e0f-1a3c5d7b9e2f",
    "eventId": "c3b8d6e5-1f4a-4c9d-b3e7-2a6f8d0c4e1b",
    "partyId": "019cde41-fc63-7a9e-0e98-ac5f7a8d2b4e",
    "partyType": "INDIVIDUAL",
    "updatedAt": "2025-01-15T10:30:00Z"
  }
}