Sorry, no results found for "".
Returns a resource object of type sso_settings
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const ssoSettings = await client.ssoSettings.find();7 8 // Check the 'Returned output' tab for the result ☝️9 console.log(ssoSettings);10}11 12run();
1{2 id: "312",3 idp_saml_metadata_url: "https://my-org.oktapreview.com/app/XXXX/sso/saml/metadata",4 scim_base_url: "https://sso.datocms.com/scim",5 saml_acs_url: "https://sso.datocms.com/XXX/saml/consume",6 sp_saml_metadata_url: "https://sso.datocms.com/XXX/saml/metadata",7 sp_saml_base_url: "https://sso.datocms.com/XXX/saml",8 saml_token: "a2a24ae5fbb2d955b1b4fa73f2dd58",9 default_role: null,10}