How to bulk update user details in crowd?

Pushpkant Garg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 11, 2016

We have many existing users in crowd with incorrect email addresses. How can I bulk upload users email address?

I can import users via CSV importer but can't update existing ones.

1 answer

1 vote
Bruno Vincent
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 14, 2016

You can use Crowd REST API for this.

For instance you might want to use the following Groovy script to update a set of email addresses:

import groovyx.net.http.RESTClient
 
 
def applicationName = "myapp"
def applicationPassword = "mypassword"
 
 
def client = new RESTClient( "http://localhost:8095/crowd/rest/usermanagement/1/".toString() )
client.auth.basic applicationName, applicationPassword
 
 
def users = ['john':'john@example.com', 'jane':'jane@foo.com', 'bob':'bob@bar.com']
  
users.each{ username, email ->
  
     def body = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><user name=\"$username\"><email>$email</email></user>"                        
  
     def response = client.put(path: "user",
                               requestContentType: 'application/xml',
                               query:['username': username],
                               body: body) 
                             
    assert response.status == 204
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events