No description available
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"
}
}
API key authentication
A successful response.
This data structure is obtained as a response to a request to retrieve the parameters of a SAML service provider
Was this page helpful?
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"
}
}
No description available
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"
}
}
API key authentication
A successful response.
This data structure is obtained as a response to a request to retrieve the parameters of a SAML service provider
Was this page helpful?
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"
}
}