This endpoint requires authentication. Include your Bearer token in the Authorization header.
Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Query Parameters
ID of the integration to retrieve
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/info \
  --header 'Authorization: Bearer <token>'{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "enabled": true,
  "settings": {},
  "metadata": {},
  "memo": "<string>",
  "TenantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "IntegrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}Get VertoFX Integration Info
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/info \
  --header 'Authorization: Bearer <token>'{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "enabled": true,
  "settings": {},
  "metadata": {},
  "memo": "<string>",
  "TenantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "IntegrationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/info', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
ID of the integration to retrieve