How Can I Add or Remove Users in Bulk in Fivetran?
Question
Can I add or remove Fivetran users in bulk, or do I need to update each user manually?
Environment
Account settings
Answer
Fivetran not provide a built-in UI option to import, export, or remove users in bulk. To manage users in bulk, use the Fivetran REST API to automate these actions programmatically.
To add users, create a script that loops through your list of new users, such as users in a CSV file, and sends a POST /v1/users API request for each user you want to add. For more information, see Create User. Use a script or automation tool of your choice to handle this in bulk.
To remove users, create a script that loops through your list of users and sends a DELETE /v1/users/{user_id} request for each user. Before removing existing users, verify that any replacement users have the required access. For more information, see Delete User.
For more information, see the Fivetran REST API documentation and User Management API reference.