INPUT_OBJECT

SsoAuthInput

Protects a test session with the organization's own identity provider, so that only the assigned test-taker can open it. Available only to organizations configured for test-taker SSO.

link GraphQL Schema definition

1input SsoAuthInput {
6
2# Identifies the test-taker this session is assigned to. The session opens only
3# for a test-taker
4# whose identity provider asserts this same value at sign-in.
5authenticationClaim: String!
11
7# Extra parameters for the sign-in request, such as identity_provider or
8# login_hint.
9# At most 10; keys may contain letters, digits, hyphens and underscores.
10authParams: [SsoAuthParamInput!]
12}