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
  }
}
Get VertoFX Wallets Endpoint: integrations/vertofx/wallets?page=1&size=50 Method: GET Query Parameters
ParameterTypeDescription
pageintPage number to retrieve.
sizeintNumber of records per page (max 50).
This endpoint retrieves a paginated list of wallets available through the VertoFX integration.

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Query Parameters

ParameterTypeInRequiredDescription
pageintegerqueryāŒPage number to retrieve
sizeintegerqueryāŒNumber of records per page (max 50)

Responses

āœ… 200 - Success

āš ļø 401 - Unauthorized

āŒ 500 - Internal Server Error

Tags

VertoFx

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
⌘I