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 completed.

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: payment.completed
data
object
required
The event data containing the details below

Data Fields

data.paymentId
string (UUID)
required
Unique identifier of the completed 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": "d9e5f3a2-7b1c-4d6e-a0f8-3c5b9d2e1a4f",
  "time": "2025-01-15T10:30:00Z",
  "type": "payment.completed",
  "data": {
    "paymentId": "019cde3c-b82e-7d5a-c943-5f0a2b3d6e9c",
    "scheme": "SCT",
    "direction": "INBOUND"
  }
}
Last modified on May 5, 2026