# Gets an SSO provider by id Endpoint: GET /v1/sso/signicat/{id} Version: V1 Security: authorization_code_with_pkce, client_credentials ## Path parameters: - `id` (integer, required) ## Response 200 fields (application/json): - `id` (integer, required) The internal identifier of the identity provider. Example: 1 - `scheme` (string, required) The unique authentication scheme name used to identify this provider. Example: "azure-ad" - `displayName` (string, required) The human-readable name shown to users on the login page. Example: "Our Azure AD" - `enabled` (boolean, required) Indicates whether this provider is currently active and available for login. Example: true - `providerName` (string, required) The provider type name (e.g. Azure, Google, Signicat, Custom). Example: "Azure" - `type` (string, required) The protocol type of the provider (e.g. oidc, saml2p). Example: "oidc" - `properties` (object, required) Provider-specific configuration properties. - `properties.loginEnabled` (boolean, required) Whether users can log in via this provider. Example: true - `properties.visible` (boolean, required) Whether this provider is shown on the login page. Example: true - `properties.delegationEnabled` (boolean, required) Whether delegation is permitted via this provider. - `properties.autoProvisioningEnabled` (boolean, required) Whether users are automatically provisioned on first login via this provider. Example: true - `properties.clientId` (string, required) The OAuth 2.0 client ID registered with the identity provider. Example: "my-client-id" - `properties.clientSecret` (string,null) The OAuth 2.0 client secret. Leave null for public clients using PKCE. Example: "my-client-secret" - `properties.verifyEnabled` (boolean, required) Whether to verify user identity on each login. - `properties.authority` (string, required) The Signicat authority URL for your environment. Example: "https://yourorg.signicat.com/auth/open" - `properties.method` (string, required) The electronic ID method to enforce for authentication. Enum: "None", "BankId", "MitId", "SBID" ## Response 400 fields ## Response 401 fields ## Response 403 fields