Authorizations
API key authentication
Response
This data structure is obtained as a response to a request to retrieve the parameters of a SAML service provider
This data structure represents the parameters of a SAML service provider
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-saml/v1/sp_parameters';
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": {
"assertionConsumerServiceUrl": "assertion",
"binding": "binding",
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"nameIdFormat": "name_id",
"signingCertPem": "certificate"
}
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/aaa/team-saml/v1/sp_parameters';
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": {
"assertionConsumerServiceUrl": "assertion",
"binding": "binding",
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"nameIdFormat": "name_id",
"signingCertPem": "certificate"
}
}
API key authentication
This data structure is obtained as a response to a request to retrieve the parameters of a SAML service provider
This data structure represents the parameters of a SAML service provider
Show child attributes
Was this page helpful?