Skip to main content
POST
/
collect
/
requests
Create a payment request (Collect)
curl --request POST \
  --url https://api.getovra.com/collect/requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "destinationWalletId": "<string>",
  "amountEuros": 123,
  "description": "<string>",
  "counterpartyOwnerId": "<string>",
  "payerName": "<string>",
  "payerEmail": "jsmith@example.com",
  "payerLabel": "<string>",
  "memo": "<string>",
  "expiresInHours": 360,
  "metadata": {}
}
'
{
  "error": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key (sk_sandbox_* / sk_test_* / sk_live_*) or Agent token (at_* / at_dlg_*)

Headers

Idempotency-Key
string

Unique key for idempotent request handling

Body

application/json
destinationWalletId
string
required
amountEuros
number
required
Required range: x <= 1000000
description
string
Maximum string length: 2000
counterpartyOwnerId
string
payerName
string
payerEmail
string<email>
payerLabel
string
memo
string
Maximum string length: 1000
expiresInHours
integer
Required range: 1 <= x <= 720
metadata
object

Response

Payment request created