This function allows you to set your Saml Identity Provider Configuration in Keep. Note: This works off the instance you are logged into. Returns ()
Overview of SetSamlIdentityProviderConfiguration goes here.
Name | Description |
---|---|
configuration |
Example in C#
// Returns: nothing
await client.SetSamlIdentityProviderConfiguration(SamlIdPConfiguration configuration);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/saml/admin/idpconfiguration \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-D '{
"$type":"Feenics.Keep.WebApi.Model.SamlIdPConfiguration, Feenics.Keep.WebApi.Model",
"PartnerName":null,
"Description":null,
"SignAuthnRequest":false,
"SingleSignOnServiceUrl":null,
"SingleLogoutServiceUrl":null,
"CertificatesBase64Encoded":null,
"DefaultUserGroupIds":null,
"GroupAttributeNames":null,
"GroupMappings":null
}'