Retrieve general information about integration capabilities and configuration.
Endpoint: /integrations/info
Method: GET
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/info \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"supportedIntegrations": [
"VertoFx",
"TymS"
],
"features": [
"sync",
"auth",
"webhooks"
]
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Integration info
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/info \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"supportedIntegrations": [
"VertoFx",
"TymS"
],
"features": [
"sync",
"auth",
"webhooks"
]
}
}