Skip to main content
POST
/
accounts
/
{accountId}
/
payment-requests
Create payment request for account
curl --request POST \
  --url https://api.venlyfinance.com/v1/accounts/{accountId}/payment-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "currency": "<string>",
  "idempotencyKey": "<string>",
  "externalId": "<string>",
  "description": "<string>"
}
'
{
  "success": false,
  "errors": [
    {
      "code": "VALIDATION_ERROR",
      "message": "The request contains invalid parameters."
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.venlyfinance.com/llms.txt

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

Authorizations

Path Parameters

accountId
string<uuid>
required

Body

application/json
amount
number
required

Payment amount

currency
string
required

Currency code (e.g. EUR, USD)

Minimum string length: 1
idempotencyKey
string
required

Unique key to prevent duplicate operations on retry

Minimum string length: 1
externalId
string

Optional external reference ID

description
string

Optional payment description

Response

Payment request created