@hcl-software/domino-rest-sdk-node
    Preparing search index...

    Type Alias RestCredentials

    Credentials needed to access Domino REST API server. Required properties changes depending on type. If type is basic then username and password is needed, otherwise, if type is oauth, then application ID, application secret and refresh token is required.

    type RestCredentials = {
        appId?: string;
        appSecret?: string;
        password?: string;
        refreshToken?: string;
        scope?: string;
        token?: string;
        type?: CredentialType;
        username?: string;
    }
    Index

    Properties

    appId?: string

    Required for oauth credentials. The application ID.

    appSecret?: string

    Required for oauth credentials. The application secret.

    password?: string

    Required for basic credentials. The password of user.

    refreshToken?: string

    Required for oauth credentials. The refresh token.

    scope?: string

    The scope/s you want access to separated by spaces.

    token?: string

    Required for token credentials. Access token for Domino REST API.

    The type of credentials given. Can be 'basic' or 'oauth'. Defaults to 'basic' if not given.

    username?: string

    Required for basic credentials. The username of user.