Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.finventi.com/llms.txt

Use this file to discover all available pages before exploring further.

This webhook is sent when a payment has been created 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
correlationId
string
Identifier to correlate the request with the response. Present only for outbound payments.
type
string
required
The type of event. Value: payment.created
data
object
required
The event data containing the details below

Data Fields

data.paymentId
string (UUID)
required
Unique identifier of the created payment
data.scheme
string
required
Payment scheme. Available values: SCT, SCT_INST, INTERNAL
data.direction
string
required
Payment direction. Available values: INBOUND, OUTBOUND

Request Example

{
  "id": "b7c4d2e1-3a5f-4b8c-9d1e-6f2a8c4e0b7d",
  "time": "2025-01-15T10:30:00Z",
  "correlationId": "req-12345",
  "type": "payment.created",
  "data": {
    "paymentId": "019cde3b-a71f-7c4d-b832-4e9f1a2d5c8b",
    "scheme": "SCT",
    "direction": "OUTBOUND"
  }
}
Last modified on May 5, 2026