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

let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-saml/v1/configuration';

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));
{
  "idpDetails": {
    "icon": "<string>",
    "name": "<string>"
  },
  "idpParameters": {
    "active": true,
    "groupNames": [
      [
        "group1"
      ]
    ],
    "metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
    "teamEntityId": 1234567
  },
  "spParameters": {
    "assertionConsumerServiceUrl": "assertion",
    "binding": "binding",
    "metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
    "nameIdFormat": "name_id",
    "signingCertPem": "certificate"
  },
  "teamId": 123
}

Authorizations

Authorization
string
header
required

API key authentication

Response

This data structure is obtained as a response to a request to retrieve the configuration of a SAML service provider and identity provider

idpParameters
object
required

This data structure represents a set of SAML identity provider parameters

  • IDP Parameters
  • IDP Parameters
spParameters
object
required

This data structure represents the parameters of a SAML service provider

teamId
integer
required
idpDetails
object
I