Skip to main content
GET
/
integrations
/
vertofx
/
payment-requests
/
{id}
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"
  }
}
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/integrations/vertofx/payment-requests/example-id', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Payment Request ID

Response

Success

success
boolean
data
object