Interface AcceptClaimConsentRequest

interface AcceptClaimConsentRequest {
    accepted_claims: string[];
    client_id: string;
    q?: string;
    sub?: string;
}

Properties

accepted_claims: string[]

List of claims, which is included in the claim consent to be accepted

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.

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.