Get All VertoFx Integrations
Description:
The /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 |
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
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Page number for pagination
Number of integrations per page
Success
The response is of type object
.
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
}