Skip to main content
This webhook is sent when an account has been successfully created for a party.

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: account.created
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.accountId
string (UUID)
required
Unique identifier of the created account
data.partyId
string (UUID)
required
Unique identifier of the party that owns the account
data.currency
string
required
Currency of the account. Available values: EUR
data.iban
string
required
International Bank Account Number
data.bban
string
required
Basic Bank Account Number
data.status
string
required
Current status of the account. Available values: OPENED, BLOCKED, CLOSED

Request Example

{
  "id": "a3f8e2b1-5c7d-4e9f-b8a2-1d4c6e9f0a3b",
  "time": "2025-01-15T10:30:00Z",
  "type": "account.created",
  "correlationId": "550e8400-e29b-41d4-a716-446655440000",
  "data": {
    "accountId": "019bdb2a-960f-789d-8955-21720e6cdeed",
    "partyId": "019bdb2a-960f-789d-8955-21720e6cdeef",
    "currency": "EUR",
    "iban": "LT123456789012345678",
    "bban": "123456789012345678",
    "status": "OPENED"
  }
}
Last modified on March 25, 2026