Interface AcceptScopeConsentRequest

interface AcceptScopeConsentRequest {
    client_id: string;
    q?: string;
    scopes: string[];
    sub?: string;
}

Properties

Properties

client_id: string

Unique identifier of client app, can be found in app setting under admin ui

q?: string

Masked sub (id of user), who will accept the consent. Either sub or q have to be provided, depends on what is given from the query parameter.

scopes: string[]

List of scopes, which is included in the scope consent to be accepted

sub?: string

Masked sub (id of user), who will accept the consent. Either sub or q have to be provided, depends on what is given from the query parameter.