Skip to main content
node
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/integrations/extensions/v1/deployed';

let options = {method: 'PUT', headers: {Authorization: 'Bearer <API_KEY>'}};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "extensionDeployment": {
    "applications": [
      "<string>"
    ],
    "id": "<string>",
    "itemIds": [
      "<string>"
    ],
    "subsystems": [
      "<string>"
    ],
    "version": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Response

extensionDeployment
object
required
I