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

let url = 'https://api.coralogix.com/mgmt/openapi/integrations/integrations/v1/rum/app-versions';

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));
{
  "versionData": {
    "syncedAt": "2023-11-07T05:31:56Z",
    "versions": [
      {
        "logMetadata": {
          "firstOccurrence": "2023-11-07T05:31:56Z",
          "lastOccurrence": "2023-11-07T05:31:56Z"
        },
        "sourceMapMetadata": {
          "createdAt": "2023-11-07T05:31:56Z",
          "isUploadedSuccessful": true
        },
        "version": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Response

versionData
object
required
I