Skip to main content
POST
/
api
/
v1
/
payments
/
{paymentInstructionId}
:confirm
Confirm payment instruction
curl --request POST \
  --url https://api.plais-sandbox.finventi.com/api/v1/payments/{paymentInstructionId}:confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "currency": "<string>"
}
'
{
  "result": {
    "accepted": "<string>"
  }
}

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.

Path Parameters

paymentInstructionId
string
required

Payment instruction ID

Body

application/json
amount
integer<int64>
required

Amount in minor currency units (cents)

currency
string
required

Currency

Response

Result of payment instruction confirmation

result
object
required

Result of the payment instruction posting

Last modified on May 7, 2026