@makehq/sdk
    Preparing search index...

    Type Alias ListPrivateSpacesOptions<C>

    Options for listing private spaces.

    type ListPrivateSpacesOptions<C extends keyof PrivateSpace = never> = {
        cols?: C[] | ["*"];
        externalId?: string;
        pg?: Partial<Pagination<PrivateSpace>>;
    }

    Type Parameters

    • C extends keyof PrivateSpace = never

      Keys of the PrivateSpace type to include in the response

    Index

    Properties

    Properties

    cols?: C[] | ["*"]

    Specific columns/fields to include in the response

    externalId?: string

    Filter spaces by their external ID

    pg?: Partial<Pagination<PrivateSpace>>

    Pagination options (the API supports sorting by name only)