Skip to main content
POST
/
v1
/
payments
Initiate payment
curl --request POST \
  --url https://api.example.com/v1/payments \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "remittanceInformation": "Invoice payment #12345",
  "paymentScheme": "SCT",
  "debtor": {
    "accountId": "019bdb2a-960f-789d-8955-21720e6cdeef",
    "iban": "LT647044001231465456"
  },
  "endToEndId": "E2E-123456"
}
'
{
  "correlationId": "550e8400-e29b-41d4-a716-446655440000"
}

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.

Headers

Idempotency-Key
string
required

Client-provided idempotency key. UUID v4 suggested, max 255 characters.

Maximum string length: 255
Pattern: \S

Body

application/json

Request to create a payment transaction

remittanceInformation
string
required

Payment description/reference

Pattern: \S
Example:

"Invoice payment #12345"

paymentScheme
enum<string>

Payment scheme

Available options:
SCT,
SCT_INST
Example:

"SCT"

debtor
object

Debtor (payer) details. Exactly one of accountId or iban must be provided.

creditor
object

Creditor (payee) information

instructedAmount
object

Payment amount

endToEndId
string | null

End-to-end identifier

Example:

"E2E-123456"

Response

Payment initiation accepted

Response for accepted asynchronous requests

correlationId
string

Correlation identifier for tracking the request through events

Example:

"550e8400-e29b-41d4-a716-446655440000"

Last modified on February 10, 2026