user

Get all users

Securityapi_key
Request
query Parameters
page_number
integer <int64>
Default: 1

The page number for which to get users. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
200

Success

400

Bad request

403

Forbidden access

get/users
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Create user

Securityapi_key
Request
Request Body schema: application/json
required

The user to create

userName
required
string <= 255 characters

The name for this User. Note that it must be unique among Users.

password
string

The password for this User. NOTE: For updates, this field does not have to be set. If no password is provided on an update, then the current password will persist.

firstName
required
string <= 255 characters

The first name of this User. This does not need to match the user name.

lastName
required
string <= 255 characters

The last name of this User. This does not need to match the user name.

email
required
string <= 255 characters

The email address for this User.

isAdmin
required
boolean

True for an administrative User, false for a non-administrative User.

showWelcome
boolean
Default: true

Flag to enable and disable welcome page for user, default true for a newly created User.

userStatus
required
string

Status of user account.

Enum: "ACTIVE" "LOCKED" "DISABLED"
disableReason
string <= 255 characters

The reason why the user's account was locked.

object (NonAdminProperties)
apiAccess
boolean

For use with SSO only. Flag to enable and disable api access for users. When SSO is enabled, the value defaults to true for admins and false for non-admins. When SSO is disabled, the value defaults to true for all users. The value is only modifiable when SSO is enabled and only by admins. The value is immutable for admin users except with DCT enabled. When SSO is disabled, the value is ignored and the user will be granted API access.

principal
string

Identifies this user on external identity services. Used for OAuth2 API authentication when the principal is selected as the field to match users with access tokens.

Responses
201

Success

400

Bad request

403

Forbidden access

404

Not found

409

Conflict

post/users
Request samples
application/json
{
  • "userName": "DelphixUser1",
  • "password": "Password_123",
  • "firstName": "First",
  • "lastName": "Last",
  • "email": "user@delphix.com",
  • "isAdmin": false,
  • "showWelcome": true,
  • "userStatus": "ACTIVE",
  • "nonAdminProperties": {
    }
}
Response samples
application/json
{
  • "userName": "DelphixUser1",
  • "password": "Password_123",
  • "firstName": "First",
  • "lastName": "Last",
  • "email": "user@delphix.com",
  • "isAdmin": false,
  • "showWelcome": true,
  • "userStatus": "ACTIVE",
  • "nonAdminProperties": {
    }
}

Get user by ID

Securityapi_key
Request
path Parameters
userId
required
integer <int32>

The ID of the user to get

Responses
200

Success

403

Forbidden access

404

Not found

get/users/{userId}
Response samples
application/json
{
  • "userName": "DelphixUser1",
  • "password": "Password_123",
  • "firstName": "First",
  • "lastName": "Last",
  • "email": "user@delphix.com",
  • "isAdmin": false,
  • "showWelcome": true,
  • "userStatus": "ACTIVE",
  • "nonAdminProperties": {
    }
}

Update user by ID

Securityapi_key
Request
path Parameters
userId
required
integer <int32>

The ID of the user to update

Request Body schema: application/json
required

The updated user

userName
required
string <= 255 characters

The name for this User. Note that it must be unique among Users.

password
string

The password for this User. NOTE: For updates, this field does not have to be set. If no password is provided on an update, then the current password will persist.

firstName
required
string <= 255 characters

The first name of this User. This does not need to match the user name.

lastName
required
string <= 255 characters

The last name of this User. This does not need to match the user name.

email
required
string <= 255 characters

The email address for this User.

isAdmin
required
boolean

True for an administrative User, false for a non-administrative User.

showWelcome
boolean
Default: true

Flag to enable and disable welcome page for user, default true for a newly created User.

userStatus
required
string

Status of user account.

Enum: "ACTIVE" "LOCKED" "DISABLED"
disableReason
string <= 255 characters

The reason why the user's account was locked.

object (NonAdminProperties)
apiAccess
boolean

For use with SSO only. Flag to enable and disable api access for users. When SSO is enabled, the value defaults to true for admins and false for non-admins. When SSO is disabled, the value defaults to true for all users. The value is only modifiable when SSO is enabled and only by admins. The value is immutable for admin users except with DCT enabled. When SSO is disabled, the value is ignored and the user will be granted API access.

principal
string

Identifies this user on external identity services. Used for OAuth2 API authentication when the principal is selected as the field to match users with access tokens.

Responses
200

Success

400

Bad request

401

Unauthorized access

403

Forbidden access

404

Not found

409

Conflict

put/users/{userId}
Request samples
application/json
{
  • "userName": "DelphixUser1",
  • "password": "Password_123",
  • "firstName": "First",
  • "lastName": "Last",
  • "email": "user@delphix.com",
  • "isAdmin": false,
  • "showWelcome": true,
  • "userStatus": "ACTIVE",
  • "nonAdminProperties": {
    }
}
Response samples
application/json
{
  • "userName": "DelphixUser1",
  • "password": "Password_123",
  • "firstName": "First",
  • "lastName": "Last",
  • "email": "user@delphix.com",
  • "isAdmin": false,
  • "showWelcome": true,
  • "userStatus": "ACTIVE",
  • "nonAdminProperties": {
    }
}

Delete user by ID

Securityapi_key
Request
path Parameters
userId
required
integer <int32>

The ID of the user to delete

Responses
200

Success

400

Bad request

401

Unauthorized access

403

Forbidden access

404

Not found

delete/users/{userId}

Send Reset password mail to the user

Securityapi_key
Request
Request Body schema: application/json
required

The username for which password has to be reset

userName
required
string <= 255 characters

The username for logging into the Masking Engine.

Responses
200

Password reset email sent!

400

Bad request

post/users/forgot-password
Request samples
application/json
{
  • "userName": "maskinguser"
}

Reset new password for the user

Securityapi_key
Request
Request Body schema: application/json
required

Reset password for user using token received on e-mail

userName
required
string <= 255 characters

The username for resetting the password

token
required
string <= 255 characters

The generated token received in the email

password
required
string <= 255 characters

The new password for this username.

Responses
200

Password successfully updated!

400

Bad request

post/users/reset-password
Request samples
application/json
{
  • "userName": "maskinguser",
  • "token": "abc",
  • "password": "Secret123!"
}