SSOInput Input
Description
Input fields for single sign-on (SSO) authentication. Supports different SSO providers with provider-specific authentication methods.
Declaration
input SSOInput {
type: String!
jwt: String
code: String
audience: String
}
Fields
| Name | Type | Description |
|---|---|---|
type | String! | SSO provider type. Valid values include provider identifiers for supported SSO services. |
jwt | String | JSON Web Token (JWT) for SSO authentication. Required for certain SSO provider types that use JWT-based authentication. |
code | String | Authorization code for SSO authentication. Required for certain SSO provider types that use code-based authentication flow. |
audience | String | Audience identifier for the SSO token. Used to specify the intended recipient of the token. |