Update User

Update user

Params

nameParameter typeData TypeValuesDescription
-----

Sample Requests

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

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

Sample Responses

HTTP/1.1 200 OK

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

Models

User