No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/sso/saml/configuration?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));
{
"teamId": 123,
"spParameters": {
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"signingCertPem": "certificate",
"nameIdFormat": "name_id",
"assertionConsumerServiceUrl": "assertion",
"binding": "binding"
},
"idpParameters": {
"active": true,
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"metadataContent": "<?xml version= ...",
"teamEntityId": 1234567,
"groupNames": [
"group1"
]
},
"idpDetails": {
"name": "<string>",
"icon": "<string>"
}
}
API key authentication
A successful response.
This data structure is obtained as a response to a request to retrieve the configuration of a SAML service provider and identity provider
Was this page helpful?
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/sso/saml/configuration?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));
{
"teamId": 123,
"spParameters": {
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"signingCertPem": "certificate",
"nameIdFormat": "name_id",
"assertionConsumerServiceUrl": "assertion",
"binding": "binding"
},
"idpParameters": {
"active": true,
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"metadataContent": "<?xml version= ...",
"teamEntityId": 1234567,
"groupNames": [
"group1"
]
},
"idpDetails": {
"name": "<string>",
"icon": "<string>"
}
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/sso/saml/configuration?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));
{
"teamId": 123,
"spParameters": {
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"signingCertPem": "certificate",
"nameIdFormat": "name_id",
"assertionConsumerServiceUrl": "assertion",
"binding": "binding"
},
"idpParameters": {
"active": true,
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"metadataContent": "<?xml version= ...",
"teamEntityId": 1234567,
"groupNames": [
"group1"
]
},
"idpDetails": {
"name": "<string>",
"icon": "<string>"
}
}
API key authentication
A successful response.
This data structure is obtained as a response to a request to retrieve the configuration of a SAML service provider and identity provider
Was this page helpful?
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/v1/sso/saml/configuration?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));
{
"teamId": 123,
"spParameters": {
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"signingCertPem": "certificate",
"nameIdFormat": "name_id",
"assertionConsumerServiceUrl": "assertion",
"binding": "binding"
},
"idpParameters": {
"active": true,
"metadataUrl": "https://<...>.okta.com/app/<...>/sso/saml/metadata",
"metadataContent": "<?xml version= ...",
"teamEntityId": 1234567,
"groupNames": [
"group1"
]
},
"idpDetails": {
"name": "<string>",
"icon": "<string>"
}
}