Skip to main content
GET
/
integrations
/
vertofx
/
all
Get All VertoFx Integrations
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/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
}
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Code Examples

const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/all', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Query Parameters

page
integer
default:1

Page number for pagination

size
integer
default:10

Number of integrations per page

Response

Success

success
boolean
data
object[]
total
integer
page
integer
size
integer