Create SSOConfig

POST
https://api.luzmo.com/0.1.0/ssoconfig

SSO config allows organizations to configure Single Sign-On authentication using OIDC protocol. Each organization can have at most one SSO configuration.

Parameters
Expand all Reset
properties *OBJECTrequired
protocol *STRINGrequired
config *OBJECTrequired
Can be executed by:
Organization Owner
Can be associated to:
Organization
Did this page help you?
Yes No
Language
Shell
Node
Java
.NET
Python
PHP
Install
npm install @luzmo/nodejs-sdk
Response when an SSO configuration is created successfully.
Example Response
200
400
500
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "organization_id": "550e8400-e29b-41d4-a716-446655440001",
  "protocol": "OIDC",
  "config": {
    "client_id": "your-client-id",
    "client_secret": "your-client-secret",
    "issuer": "https://your-oidc-provider.com",
    "authorization_url": "https://your-oidc-provider.com/auth",
    "token_url": "https://your-oidc-provider.com/token",
    "user_info_url": "https://your-oidc-provider.com/userinfo"
  },
  "is_verified": false,
  "disable_email_password": false,
  "created_at": "2024-01-15T10:30:00.000Z",
  "updated_at": "2024-01-15T10:30:00.000Z"
}