Enable/Disable SAML SSO Login Configuration¶
POST /api/v1/sso/{sso_uuid}/set_disable
Overview¶
Enable/Disable SAML SSO login
Route Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
sso_uuid | string | Y | SSO configuration item ID |
Body Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
isDisable | boolean | Y | Set the enabled status Example: True Allow null: False |
Additional Parameter Explanation¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/sso/sso_xxxx32/set_disable' \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw '{"isDisable":true}' \
--compressed