Interface GetConsentDetailsRequest

interface GetConsentDetailsRequest {
    consent_id: string;
    consent_version_id: string;
    q?: string;
    sub?: string;
}

Properties

consent_id: string

Unique identifier for consent to be accepted

consent_version_id: string

Unique identifier for version of the consent to be accepted

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.