Contents:
Updates the platform account information for a user specified by userId.
Version: v4
Required Permissions
The authenticated user must be an admin.
NOTE: Each request to the Designer Cloud Powered by Trifacta® platform must include authentication credentials. See https://api.trifacta.com/ee/6.4/index.html#section/Authentication.
Request
Request Type: PATCH
Endpoint:
/v4/people/<id>
where:
Parameter | Description |
---|---|
<id> | Internal identifier of the user to update. |
Request URI - Example:
/v4/people/6
Request Body:
NOTE: For the PATCH method, only the properties that are being patched need to be submitted.
{ "outputHomeDir": "/trifacta/queryResults/joe@example.com", "email": "joe@example.com", "name": "Joe Example", "ssoPrincipal": null, "hadoopPrincipal": null, "isAdmin": false, "isDisabled": false, "forcePasswordChange": true, "awsConfig": null }
Request Body Example - Disable User
You can use the following request to disable the specified user. This request also removes the admin role from the user.
{ "isAdmin": false, "isDisabled": true }
Response
Response Status Code - Success: 200 - OK
Response Body Example:
{ "id": 6, "updatedAt": "2018-01-24T23:49:08.199Z" }
Reference
For more information on these properties, see API People Get v4.
This page has no comments.