Get VertoFX Wallets
Endpoint: 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). |
This endpoint retrieves a paginated list of wallets available through the VertoFX integration.
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
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Page number to retrieve
Number of records per page (max 50)
x <= 50
Success
The response is of type object
.
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
}
}