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

# Payment Created

> Webhook notification sent when a payment is created

<Note>
  This webhook is sent when a payment has been created in the system.
</Note>

## Webhook Structure

<ParamField body="id" type="string (UUID)" required>
  Unique identifier for this event
</ParamField>

<ParamField body="time" type="string (ISO 8601)" required>
  Timestamp of when the event occurred
</ParamField>

<ParamField body="correlationId" type="string">
  Identifier to correlate the request with the response. Present only for outbound payments.
</ParamField>

<ParamField body="type" type="string" required>
  The type of event. Value: `payment.created`
</ParamField>

<ParamField body="data" type="object" required>
  The event data containing the details below
</ParamField>

### Data Fields

<ParamField body="data.paymentId" type="string (UUID)" required>
  Unique identifier of the created payment
</ParamField>

<ParamField body="data.scheme" type="string" required>
  Payment scheme. Available values: `SCT`, `SCT_INST`, `INTERNAL`
</ParamField>

<ParamField body="data.direction" type="string" required>
  Payment direction. Available values: `INBOUND`, `OUTBOUND`
</ParamField>

## Request Example

```json theme={null}
{
  "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"
  }
}
```
