@idkollen/client
    Preparing search index...

    Interface AgeVerificationRequest

    Request body for starting an age verification session.

    At least one of minAge or maxAge must be provided. If both are given, maxAge must be >= minAge.

    interface AgeVerificationRequest {
        callbackUrl?: string;
        maxAge?: number;
        minAge?: number;
        redirectUrl?: string;
        refId?: string;
    }
    Index

    Properties

    callbackUrl?: string

    URL to receive the result callback on success or failure.

    maxAge?: number

    Maximum age (inclusive).

    minAge?: number

    Minimum age (inclusive).

    redirectUrl?: string

    URL to redirect the user to after completing age verification.

    refId?: string

    Reference ID returned verbatim in the result and callback.