Create User

Create new users

Swagger Swagger

Params

nameParameter typeData TypeValuesDescription
passwordbodystringtestUserPasswordAssign password. If blank, password reset email will be sent
emailbodystringtestUser@intapp.comUser's email address
firstNamebodystringTestFirst name of user
lastNamebodystringUserLast name of user
federationIDbodystringtestUser@intapp.comSSO users
groupsbodyint[]12, 22, 192User Group IDs for group assignment
twoFactorEnabledbodybooleantrueEnable 2FA. Cannot be disabled via API
ipRestrictionsEnabledbodybooleantrueToggle IP restrictions
isActivebodybooleaantrueCreates active / inactive users

Sample Requests

If password is not provided, a password reset email will be sent to the user.

POST {{host}}/api/rest/v1/management/user
Authorization: {{auth}}
Content-Type: application/json

{
  "email": "testUser@intapp.com",
  "password": "testUserPassword",
  "firstName": "Test",
  "lastName": "User",
  "federationId": "testUser@intapp.com",
  "groups": [
    12,22,192
  ],
  "twoFactorEnabled": true,
  "ipRestrictionsEnabled": true
}

Sample Response

HTTP/1.1 200 OK

{
  "createdDate": "2020-05-27T14:41:13.083",
  "createdBy": 18912,
  "modifiedDate": "2020-05-27T14:41:13.083",
  "modifiedBy": 18912,
  "id": 10114,
  "isActive": true,
  "email": "testUser@intapp.com",
  "firstName": "Test",
  "lastName": "User",
  "groups": [12, 22,192]
  "twoFactorEnabled": true,
  "ipRestrictionsEnabled": true
}

Models

User