kustomer-client
    Preparing search index...

    Function getMultipleUsersByIds

    • Get Multiple Users by IDs Retrieves multiple users in a single request using a list of unique user IDs separated by a comma.

      Type Parameters

      • ThrowOnError extends boolean = true

      Returns RequestResult<
          {
              data: {
                  attributes: {
                      createdAt: string;
                      displayName: null
                      | string;
                      email: string;
                      mobile: null | string;
                      name: string;
                      roles: string[];
                      updatedAt: string;
                      userType: string;
                  };
                  id: string;
                  links: { self: string };
                  relationships: {
                      org: { data: { id: string; type: string }; links: { self: string } };
                  };
                  type: string;
              }[];
              links: {
                  first: string;
                  next: null
                  | string;
                  prev: null | string;
                  self: string;
              };
              meta: { page: number; pageSize: number };
          },
          unknown,
          ThrowOnError,
      >