POST
/
integrations
/
vertofx
/
payment-requests
/
v2
Create VertoFx Payment Request (v2)
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/payment-requests/v2 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 1000,
  "currency": "USD",
  "beneficiary": "beneficiary_123",
  "purposeCode": "INV"
}'
{
  "id": "req_123456",
  "status": "pending",
  "amount": 1000,
  "currency": "USD"
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Body

application/json

Response

201
application/json

Payment request created

The response is of type object.