Skip to main content
POST
/
webhook
/
verto
/
payment-outward
/
webhook
VertoFX payment status webhook
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/webhook/verto/payment-outward/webhook \
  --header 'Content-Type: application/json' \
  --data '{
  "transactionId": "verto_txn_123456",
  "status": "completed",
  "amount": 1250.75,
  "currency": "USD",
  "recipientId": "user_123456",
  "fees": 5
}'
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Code Examples

const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/webhook/verto/payment-outward/webhook', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${token}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "transactionId": "verto_txn_123456",
    "status": "completed",
    "amount": 1250.75,
    "currency": "USD",
    "recipientId": "user_123456",
    "fees": 5
  })
});

const data = await response.json();
console.log(data);

Body

application/json
transactionId
string
required
Example:

"verto_txn_123456"

status
enum<string>
required
Available options:
pending,
completed,
failed,
cancelled
Example:

"completed"

amount
number
Example:

1250.75

currency
string
Example:

"USD"

recipientId
string
Example:

"user_123456"

fees
number
Example:

5

Response

200

Webhook processed successfully