curl --request GET \
--url https://api.royalti.io/integrations/vertofx/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "d3fa97e3-2573-4695-9d1d-516f8b11d874",
"name": "Royalti Demo Verto Integrations",
"enabled": true
}
],
"total": 1,
"page": 1,
"size": 10
}Get All VertoFx Integrations
curl --request GET \
--url https://api.royalti.io/integrations/vertofx/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "d3fa97e3-2573-4695-9d1d-516f8b11d874",
"name": "Royalti Demo Verto Integrations",
"enabled": true
}
],
"total": 1,
"page": 1,
"size": 10
}/integrations/vertofx/all endpoint retrieves all existing VertoFX integration configurations.
Method: GET
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. Default: 1 |
| size | integer | Number of integrations per page. Default: 10 |
const response = await fetch('https://api.royalti.io/integrations/vertofx/all', {
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 for pagination
Number of integrations per page