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

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

let options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <API_KEY>', 'content-type': 'application/json'},
  body: '{"params":{"active":true,"groupNames":[["group1"]],"metadataUrl":"https://<...>.okta.com/app/<...>/sso/saml/metadata","teamEntityId":1234567},"teamId":0}'
};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

This data structure is used to set the parameters of a SAML identity provider

params
object
required

This data structure represents a set of SAML identity provider parameters

  • IDP Parameters
  • IDP Parameters
teamId
integer
required

Response

The response is of type object.

I