Interface RevokeClaimConsentRequest

interface RevokeClaimConsentRequest {
    access_token?: string;
    client_id: string;
    revoked_claims: string[];
    sub: string;
}

Properties

access_token?: string

Access token needed to authorized api call. If not provided, access token from UserStorage will be used.

client_id: string

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

revoked_claims: string[]

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

sub: string

sub (id of user), who will revoke the consent