This endpoint requires authentication. Include your Bearer token in the Authorization header.
Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Payment Request ID
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/payment-requests/{id} \
  --header 'Authorization: Bearer <token>'{
  "success": true,
  "data": {
    "id": "vfx-payment-123",
    "amount": 1000.5,
    "currency": "USD",
    "status": "completed",
    "reference": "PAY-12122024-001",
    "memo": "Monthly payment"
  }
}Get VertoFX Payment Request Details
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/payment-requests/{id} \
  --header 'Authorization: Bearer <token>'{
  "success": true,
  "data": {
    "id": "vfx-payment-123",
    "amount": 1000.5,
    "currency": "USD",
    "status": "completed",
    "reference": "PAY-12122024-001",
    "memo": "Monthly payment"
  }
}const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/payment-requests/example-id', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Payment Request ID