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

Webhook Structure

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

Request Example

{
  "eventType": "ACCOUNT_CREATED",
  "payload": {
    "correlationId": "550e8400-e29b-41d4-a716-446655440000",
    "eventId": "a3f8e2b1-5c7d-4e9f-b8a2-1d4c6e9f0a3b",
    "accountId": "019bdb2a-960f-789d-8955-21720e6cdeed",
    "partyId": "019bdb2a-960f-789d-8955-21720e6cdeef",
    "currency": "EUR",
    "iban": "LT123456789012345678",
    "bban": "123456789012345678",
    "status": "OPENED"
  }
}