GET
/
v1
/
sso
/
saml
/
sp_parameters
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/v1/sso/saml/sp_parameters?teamId=SOME_INTEGER_VALUE';

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));
{
  "params": {
    "metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
    "signingCertPem": "certificate",
    "nameIdFormat": "name_id",
    "assertionConsumerServiceUrl": "assertion",
    "binding": "binding"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

teamId
integer
required

Response

200
application/json

A successful response.

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