This endpoint requires authentication. Include your Bearer token in the Authorization header.
Code Examples
Body
application/json
Response
200
Webhook processed successfully
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
}'Receives payment status updates from VertoFX payment processor
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
}'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);
Webhook processed successfully