Skip to main content Link Search Menu Expand Document (external link)

BulkImportUsers overview

Command for bulk importing users from CSV or JSON files into PingOne.

Added in v0.0.1


Table of contents


utils

bulkImportUsersCommand

Command to bulk import users from a CSV or JSON file.

Signature

export declare const bulkImportUsersCommand: Command.Command<
  "bulk_import_users",
  OAuthService | FileSystem | HttpClient | CredentialService,
  Error | ParseError | PlatformError,
  {
    readonly filePath: string
    readonly environmentId: Option<string>
    readonly pingoneToken: Option<Redacted<string>>
    readonly format: "csv" | "json"
    readonly dryRun: boolean
    readonly concurrency: number
  }
>

Added in v0.0.1