@idkollen/client
    Preparing search index...

    Interface BankIdNoSignRequest

    Request body for starting a BankID NO signing session.

    interface BankIdNoSignRequest {
        documents?: string[];
        redirectUrl?: string;
        refId?: string;
        requestAddress?: boolean;
        requestEmail?: boolean;
        requestPhone?: boolean;
        requestSsn?: boolean;
        text?: string;
    }
    Index

    Properties

    documents?: string[]

    Document IDs to sign (from /v3/document). Mutually exclusive with text.

    redirectUrl?: string

    URL to redirect the user to after completing the flow.

    refId?: string

    Reference ID returned verbatim in the result and callback.

    requestAddress?: boolean
    requestEmail?: boolean
    requestPhone?: boolean
    requestSsn?: boolean
    text?: string

    Text to sign (max 118 chars). Mutually exclusive with documents.