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

let url = 'https://api.coralogix.com/mgmt/openapi/integrations/contextual-data/v1/076f4188-05e0-4ed3-afeb-653ad182ccb7';

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

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "integrationDetail": {
    "default": {
      "registered": [
        {
          "definitionVersion": "<string>",
          "empty": {},
          "id": "<string>",
          "integrationStatus": {
            "connectionStatus": "PENDING",
            "details": [
              "<any>"
            ],
            "messages": [
              "<any>"
            ]
          },
          "isTesting": true,
          "lastUpdated": "2023-11-07T05:31:56Z",
          "parameters": [
            {}
          ]
        }
      ]
    },
    "docs": [
      {
        "link": "<string>",
        "name": "<string>"
      }
    ],
    "extensions": [
      {
        "changelog": [
          {
            "descriptionMd": "<string>",
            "version": "<string>"
          }
        ],
        "darkModeImage": "<string>",
        "deprecation": {
          "reason": "<string>",
          "replacementExtensions": [
            "<string>"
          ]
        },
        "id": "<string>",
        "image": "<string>",
        "integrations": [
          "<string>"
        ],
        "isHidden": true,
        "keywords": [
          "<string>"
        ],
        "name": "<string>",
        "permissionDeniedRevisions": [
          {
            "binaries": [
              "<any>"
            ],
            "description": "<string>",
            "excerpt": "<string>",
            "integrationDetails": [
              "<any>"
            ],
            "isTesting": true,
            "items": [
              "<any>"
            ],
            "labels": [
              "<any>"
            ],
            "permissionDeniedItems": [
              "<any>"
            ],
            "version": "<string>"
          }
        ],
        "revisions": [
          {
            "binaries": [
              "<any>"
            ],
            "description": "<string>",
            "excerpt": "<string>",
            "integrationDetails": [
              "<any>"
            ],
            "isTesting": true,
            "items": [
              "<any>"
            ],
            "labels": [
              "<any>"
            ],
            "permissionDeniedItems": [
              "<any>"
            ],
            "version": "<string>"
          }
        ]
      }
    ],
    "integration": {
      "darkIcon": "<string>",
      "description": "<string>",
      "featureFlag": "<string>",
      "icon": "<string>",
      "id": "<string>",
      "integrationType": {
        "managed": {
          "variant": "DEFAULT"
        }
      },
      "name": "<string>",
      "tags": [
        "<string>"
      ],
      "versions": [
        "<string>"
      ]
    },
    "local": {
      "changes": [
        {
          "descriptionMd": "<string>",
          "version": "<string>"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

id
string
required
Example:

"076f4188-05e0-4ed3-afeb-653ad182ccb7"

Response

integrationDetail
object
required

This data structure represents a set of integration details.

  • Integration details
  • Integration details
I