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
  }
}

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

200
application/json

Success

The response is of type object.