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

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.updated
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 updated party
data.originPartyId
string
required
External origin party identifier
data.partyType
string
required
Type of the party. Available values: INDIVIDUAL, ORGANISATION
data.firstName
string
First name. Present for INDIVIDUAL parties.
data.lastName
string
Last name. Present for INDIVIDUAL parties.
data.dateOfBirth
string (ISO 8601 date)
Date of birth. Present for INDIVIDUAL parties.
data.nationality
string
Nationality code. Present for INDIVIDUAL parties.
data.taxIdentifications
array
Tax identification numbers
data.documents
array
Identification documents
data.registrationNumber
string
Registration number. Present for ORGANISATION parties.
Legal name. Present for ORGANISATION parties.
data.country
string
Country code
data.registrationAddress
object
Registration address
data.uboDetails
array
Ultimate beneficial owners. Present for ORGANISATION parties.
data.representatives
array
Legal representatives. Present for ORGANISATION parties.
data.createdAt
string (ISO 8601)
Timestamp of when the party was created
data.updatedAt
string (ISO 8601)
required
Timestamp of when the party was updated

Request Example

{
  "id": "c3b8d6e5-1f4a-4c9d-b3e7-2a6f8d0c4e1b",
  "time": "2025-01-15T10:30:00Z",
  "type": "party.updated",
  "correlationId": "7d3e1a4f-5b8c-42d6-9e0f-1a3c5d7b9e2f",
  "data": {
    "partyId": "019cde41-fc63-7a9e-0e98-ac5f7a8d2b4e",
    "originPartyId": "b9de8f06-6332-4879-b6a4-97c4be513a4e",
    "partyType": "INDIVIDUAL",
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "1990-01-15",
    "nationality": "LT",
    "taxIdentifications": [
      {
        "tin": "12345678901",
        "country": "LT"
      }
    ],
    "country": "LT",
    "createdAt": "2025-01-15T10:29:00Z",
    "updatedAt": "2025-01-15T10:30:00Z"
  }
}
Last modified on April 9, 2026