Deactivated users can no longer log in toTalend Cloud and
cannot use their personal tokens.
However, the objects owned by these deactivated accounts remain, intact and available to
the active users who have appropriate access rights and permissions.
Before you begin
You must have the
Users - Manage permission to complete this task.
About this task
Use the public REST API to deactivate users
when they leave your company.
Procedure
-
Create an API token from the portal:
-
In the top-right corner, click your user name.
-
Click .
-
Enter a token name and click Generate.
-
Copy the generated token and paste it somewhere secure.
-
Find the account name of the user to deactivate in .
-
Find the user name of the user to deactivate. From Talend Management Console,
go to and copy the login of the user.
-
Use the information from the previous steps to write your request. For example,
using a curl request:
curl -v -X POST
--header "Authorization: Bearer <token_value>"
--header "Content-Type: application/json"
-d '{ "accountName": "<account_name>", "userName": "<user_name>" }'
'https://iam.us.cloud.talend.com/scim/v2/Users/deactivate'
Note that you must use a POST method, and the two headers are mandatory.