Skip to content

Create clients group

Request

Creates a new SSO clients group.

Required permissions: sso-service:edit.

Security
ClientAccessToken
Bodyapplication/jsonrequired
namestringrequired

Name of the clients group

Example:"My Clients Group"
descriptionstring

Short description of the clients group

configurationobjectrequired

Configuration of the clients group

curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/v1/sso-service/sso-group \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "My Clients Group",
    "description": "string",
    "configuration": {
      "journey": "string",
      "allowSilentLogin": true,
      "sessionTimeout": 0,
      "sessionTimeoutGranularity": "seconds"
    }
  }'

Responses

Bodyapplication/json
resultobjectrequired
Response
{ "result": { "app_id": "string", "tenant_id": "string", "app_name": "string", "app_description": "string", "client_type": "web", "logo": "string", "client_id": "string", "client_display_name": "string", "client_description": "string", "client_secret": "string", "redirect_uris": [], "login_preferences": {}, "created_at": "2019-08-24T14:15:22Z", "created_by": "string", "updated_at": "2019-08-24T14:15:22Z", "resources": [], "service_providers": [], "authenticator_preferences": {}, "allow_public_signup": true, "client_auth_method": "client_secret_basic", "pkce": "enforcePkceInsteadOfClientCredentials", "device_authorization": {}, "ciba_authorization": {}, "password_sharing_group_id": "string", "login_uri": "https://www.example.com/login", "invite_member_uri": "https://www.example.com/login", "invite_client_id": "string", "subdomain": "myapp", "invite_member_email_expiration_minutes": 2880, "custom_domain": {}, "external_communication": {}, "signing_key_enabled": true, "refresh_token_invalidation_trigger_configuration": {}, "application_type": "ido" } }