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', {
  method: 'PUT',
  headers: {
    'Authorization': `Bearer ${token}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "enabled": true,
    "apiKey": "sample-apiKey",
    "clientId": "sample-clientId",
    "metadata": {},
    "memo": "sample-memo"
  })
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
ID of the integration to update
Enable or disable the integration
API key for the VertoFX integration
Client ID for the VertoFX integration