Create User

POST {{host}}/api/rest/v1/management/user

This endpoint allows you to create new users

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

Examples

If password is not provided, a password reset email will be sent to the user. (No email will be sent if IDM is enabled).

POST {{host}}/api/rest/v1/management/user
Authorization: Bearer {{token}}
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
}