curl --request GET \
--url https://api.royalti.io/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
}
}Get VertoFX Wallets
curl --request GET \
--url https://api.royalti.io/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
}
}integrations/vertofx/wallets?page=1&size=50
Method: GET
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| page | int | Page number to retrieve. |
| size | int | Number of records per page (max 50). |
const response = await fetch('https://api.royalti.io/integrations/vertofx/wallets', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Page number to retrieve
Number of records per page (max 50)
x <= 50