Type alias QuickBaseRequestGetUsers

QuickBaseRequestGetUsers: QuickBaseRequest & {
    accountId?: number;
    appIds: string[];
    emails: string[];
    nextPageToken: string;
}

Type declaration

  • Optional accountId?: number

    The account id being used to get users. If no value is specified, the first account associated with the requesting user token is chosen.

  • appIds: string[]

    When provided, the returned users will be narrowed down only to the users assigned to the app id's provided in this list. The provided app id's should belong to the same account.

  • emails: string[]

    When provided, the returned users will be narrowed down only to the users included in this list.

  • nextPageToken: string

    Next page token used to get the next 'page' of results when available. When this field is empty, the first page is returned.