Skip to main content
GET
/
integrations
/
vertofx
/
wallets
Get Verto Wallets
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/wallets \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": 3389,
      "customReferenceLabel": "Royalti",
      "currency": "AUD",
      "balance": "0"
    },
    {
      "id": 2774,
      "customReferenceLabel": "Default USD Wallet",
      "currency": "USD",
      "balance": "100000000"
    },
    {
      "id": 2775,
      "customReferenceLabel": "Default EUR Wallet",
      "currency": "EUR",
      "balance": "100000000"
    }
  ],
  "pagination": {
    "page": 1,
    "size": 10,
    "total": 3
  }
}
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/wallets', {
  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}"

Query Parameters

page
integer
default:1

Page number to retrieve

size
integer
default:10

Number of records per page (max 50)

Required range: x <= 50

Response

Success

success
boolean
data
object[]
pagination
object