Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Enterprise SSO events

This page documents the webhook events related to Enterprise SSO connection operations in Scalekit.


This webhook is triggered when a new SSO connection is created for an organization. The event type is organization.sso_created

organization.sso_created
{
"spec_version": "1",
"id": "evt_94567862441607493",
"object": "Connection",
"environment_id": "env_74418471961625391",
"occurred_at": "2025-10-14T09:27:18.488720586Z",
"organization_id": "org_83544995172188677",
"type": "organization.sso_created",
"data": {
"id": "conn_94567862424830277",
"organization_id": "org_83544995172188677",
"connection_type": "OIDC",
"provider": "OKTA"
}
}
FieldTypeDescription
idstringUnique identifier for the SSO connection
organization_idstringIdentifier for the organization associated with this connection
connection_typestringType of SSO connection (OIDC, SAML, etc.)
providerstringIdentity provider for the SSO connection

This webhook is triggered when an SSO connection is enabled for an organization. The event type is organization.sso_enabled

organization.sso_enabled
{
"spec_version": "1",
"id": "evt_94568078213382471",
"object": "Connection",
"environment_id": "env_74418471961625391",
"occurred_at": "2025-10-14T09:29:27.098914861Z",
"organization_id": "org_83544995172188677",
"type": "organization.sso_enabled",
"data": {
"id": "conn_94567862424830277",
"organization_id": "org_83544995172188677",
"connection_type": "OIDC",
"provider": "OKTA",
"enabled": true,
"status": "COMPLETED"
}
}
FieldTypeDescription
idstringUnique identifier for the SSO connection
organization_idstringIdentifier for the organization associated with this connection
connection_typestringType of SSO connection (OIDC, SAML, etc.)
providerstringIdentity provider for the SSO connection
enabledbooleanIndicates whether the SSO connection is enabled (true in this case)
statusstringCurrent status of the SSO connection configuration

This webhook is triggered when an SSO connection is disabled for an organization. The event type is organization.sso_disabled

organization.sso_disabled
{
"spec_version": "1",
"id": "evt_94557976165089560",
"object": "Connection",
"environment_id": "env_74418471961625391",
"occurred_at": "2025-10-14T07:49:05.809554456Z",
"organization_id": "org_83544995172188677",
"type": "organization.sso_disabled",
"data": {
"id": "conn_83545002856153607",
"organization_id": "org_83544995172188677",
"connection_type": "OIDC",
"provider": "OKTA",
"enabled": false,
"status": "COMPLETED"
}
}
FieldTypeDescription
idstringUnique identifier for the SSO connection
organization_idstringIdentifier for the organization associated with this connection
connection_typestringType of SSO connection (OIDC, SAML, etc.)
providerstringIdentity provider for the SSO connection
enabledbooleanIndicates whether the SSO connection is enabled (false in this case)
statusstringCurrent status of the SSO connection configuration

This webhook is triggered when an SSO connection is deleted for an organization. The event type is organization.sso_deleted

organization.sso_deleted
{
"spec_version": "1",
"id": "evt_94557997639926040",
"object": "Connection",
"environment_id": "env_74418471961625391",
"occurred_at": "2025-10-14T07:49:18.604546332Z",
"organization_id": "org_83544995172188677",
"type": "organization.sso_deleted",
"data": {
"id": "conn_83545002856153607",
"organization_id": "org_83544995172188677",
"connection_type": "OIDC",
"provider": "OKTA"
}
}
FieldTypeDescription
idstringUnique identifier for the SSO connection
organization_idstringIdentifier for the organization associated with this connection
connection_typestringType of SSO connection (OIDC, SAML, etc.)
providerstringIdentity provider for the SSO connection