Skip to main content

how we can create bulk local users under the user management in password safe

Hey @Asha, one option would be to use the API: Users: Password Safe API Calls (beyondtrust.com)

 

POST Users

 

Purpose

Creates a new user with no user group associations.

 

Required permissions

User Accounts Management (Read/Write).

 

Request body

The request body differs for the different user types available: BeyondInsightActiveDirectoryLdapDirectory

 

BeyondInsight user type

Content-Type: application/json

{
UserType : string = "BeyondInsight",
UserName : string,
FirstName : string,
LastName : string,
EmailAddress : string,
Password : string
}
 
Request body details
  • UserName: (required) Username of the user account. Max string length is 64.
  • FirstName: (required) First name of the user. Max string length is 64.
  • LastName: (optional) Last name of the user. Max string length is 64.
  • EmailAddress: (required must be a properly formatted address) - Email address for the user. Max string length is 255.
  • Password: (required) The password they would use to login to BeyondInsight.

Reply