Sorry, no results found for "".
Must be exactly "sso_settings"
.
URL of Identity Provider SAML Metadata endpoint
"https://my-org.oktapreview.com/app/XXXX/sso/saml/metadata"
Identity Provider SAML Metadata
'<?xml version="1.0" encoding="UTF-8"?>...'
The default role assigned to SSO users that do not belong to any SSO group
Returns a resource object of type sso_settings.
PUT https://site-api.datocms.com/sso-settings HTTP/1.1Authorization: Bearer YOUR-API-TOKENAccept: application/jsonX-Api-Version: 3Content-Type: application/vnd.api+json
{ "data": { "type": "sso_settings" }}
curl -g 'https://site-api.datocms.com/sso-settings' \ -X PUT \ -H "Authorization: Bearer YOUR-API-TOKEN" \ -H "Accept: application/json" \ -H "X-Api-Version: 3" \ -H "Content-Type: application/vnd.api+json" \ --data-binary '{"data":{"type":"sso_settings"}}'
await fetch("https://site-api.datocms.com/sso-settings", { method: "PUT", headers: { Authorization: "Bearer YOUR-API-TOKEN", Accept: "application/json", "X-Api-Version": "3", "Content-Type": "application/vnd.api+json", }, body: JSON.stringify({ data: { type: "sso_settings" } }),});
HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: cache-control: max-age=0, private, must-revalidateX-RateLimit-Limit: 30X-RateLimit-Remaining: 28
{ "data": { "type": "sso_settings", "id": "312", "attributes": { "idp_saml_metadata_url": "https://my-org.oktapreview.com/app/XXXX/sso/saml/metadata", "scim_base_url": "https://sso.datocms.com/scim", "saml_acs_url": "https://sso.datocms.com/XXX/saml/consume", "sp_saml_metadata_url": "https://sso.datocms.com/XXX/saml/metadata", "sp_saml_base_url": "https://sso.datocms.com/XXX/saml", "saml_token": "a2a24ae5fbb2d955b1b4fa73f2dd58" }, "relationships": { "default_role": { "data": null } } }}