Skip to main content
POST
/
payments
Create payment
curl --request POST \
  --url https://api.finpace.tech/payments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "paymentId": "pay_01J8YF6D",
  "amount": {
    "currency": "EUR",
    "amount": "1250.00"
  },
  "status": "pending_approval",
  "debtorArrangementId": "<string>",
  "approvalRequired": true
}
'
{
  "paymentId": "pay_01J8YF6D",
  "amount": {
    "currency": "EUR",
    "amount": "1250.00"
  },
  "status": "pending_approval",
  "debtorArrangementId": "<string>",
  "approvalRequired": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.finpace.tech/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
paymentId
string
required
Example:

"pay_01J8YF6D"

amount
object
required
status
string
required
Example:

"pending_approval"

debtorArrangementId
string
approvalRequired
boolean

Response

200 - application/json

OK

paymentId
string
required
Example:

"pay_01J8YF6D"

amount
object
required
status
string
required
Example:

"pending_approval"

debtorArrangementId
string
approvalRequired
boolean