Create User
POST {{host}}/api/rest/v1/management/user
This endpoint allows you to create new users
Params
name | Parameter Type | Data Type | Values | Description |
---|---|---|---|---|
password | body | string | testUserPassword | Assign password. If blank, password reset email will be sent |
body | string | testUser@intapp.com | User's email address | |
firstName | body | string | Test | First name of user |
lastName | body | string | User | Last name of user |
federationID | body | string | testUser@intapp.com | SSO users |
groups | body | int[] | 12, 22, 192 | User Group IDs for group assignment |
twoFactorEnabled | body | boolean | true | Enable 2FA. Cannot be disabled via API |
ipRestrictionsEnabled | body | boolean | true | Toggle IP restrictions |
isActive | body | booleaan | true | Creates 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
}