Files
2025-10-30 18:58:05 +01:00

22 lines
447 B
Plaintext

---
title: "Create SAML Configuration"
api: "POST /api/v1/saml-config"
description: "Configure SAML SSO."
---
Add SAML identity provider for SSO authentication.
## Request Body
\`\`\`json
{
"data": {
"type": "saml-config",
"attributes": {
"entity_id": "https://idp.example.com",
"sso_url": "https://idp.example.com/sso",
"x509_cert": "-----BEGIN CERTIFICATE-----\\n...\\n-----END CERTIFICATE-----"
}
}
}
\`\`\`