Databricks SDK for JavaScript
    Preparing search index...

    Interface GetUserRequest

    Get user details

    interface GetUserRequest {
        attributes?: string;
        count?: number;
        excludedAttributes?: string;
        filter?: string;
        id?: string;
        sortBy?: string;
        sortOrder?: GetSortOrder;
        startIndex?: number;
    }
    Index

    Properties

    attributes?: string

    Comma-separated list of attributes to return in response.

    count?: number

    Desired number of results per page.

    excludedAttributes?: string

    Comma-separated list of attributes to exclude in response.

    filter?: string

    Query by which the results have to be filtered. Supported operators are equals(eq), contains(co), starts with(sw) and not equals(ne). Additionally, simple expressions can be formed using logical operators - and and or. The SCIM RFC has more details but we currently only support simple expressions.

    id?: string

    Unique ID for a user in the workspace.

    sortBy?: string

    Attribute to sort the results. Multi-part paths are supported. For example, userName, name.givenName, and emails.

    sortOrder?: GetSortOrder

    The order to sort the results.

    startIndex?: number

    Specifies the index of the first result. First item is number 1.