Add Users

Adds user data to the import staging area. It requires the current import operation state to be either new or ready. If successful, it changes the operation state to ready .

It requires the run-import permission.

Headers

Payload

User Object

Example Payload

{
    "users": [
        {
            "username": "john.doe",
            "emails": [
                "john.doe@example.com"
            ],
            "importIds": [
                "1523"
            ],
            "name": "John Doe",
            "password": "P@ssw0rd"
        },
        {
            "username": "jane.doe",
            "emails": [
                "jane.doe@example.com"
            ],
            "importIds": [
                "1524"
            ],
            "name": "Jane Doe"
        }
    ]
}

Example Call

curl --location 'http://localhost:3000/api/v1/import.addUsers' \
--header 'x-auth-token: QizJozLOnWMi_2vWaLHhjfd-XYKT6XM40lTZ3zg1UMd' \
--header 'x-user-id: rbAXPnMktTFbNpwtJ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "users": [
        {
            "username": "john.doe",
            "emails": [
                "john.doe@example.com"
            ],
            "importIds": [
                "1523"
            ],
            "name": "John Doe",
            "password": "P@ssw0rd"
        },
        {
            "username": "jane.doe",
            "emails": [
                "jane.doe@example.com"
            ],
            "importIds": [
                "1524"
            ],
            "name": "Jane Doe"
        }
    ]
}'

Here are some key points to note:

  1. A minimum of one email address and one Import Id is required. If any user is missing those, the endpoint will fail and no user will be added to the operation.

  2. Emails and usernames will not be validated, but they must be unique or the user creation will fail.

  3. If roles are added, they must be valid Rocket.Chat roles, or the endpoint will fail and no user will be added to the operation.

  4. The default roles will be added to all users automatically.

  5. If no password is added, a temporary random password will be generated automatically.

  6. Users flagged as deleted will be created as Deactivated on Rocket.Chat.

  7. Avatar URLs will not be fetched automatically. The workspace administrator uses the "Download Pending Avatars" button in Administration > Workspace > Import on the workspace after the import is completed.

  8. Import Ids will not be used as Ids by Rocket.Chat, but you can query users by their import id with the users.info endpoint.

Example Result

Success

{
  "success": true
}

Error

  • No Permission: This occurs when the authenticated user doesn't have the run-import permission.

  • Initialize Import: This occurs when there is no current import operation. See New Import to create a new import operation.

{
    "success": false,
    "error": "User does not have the permissions required for this action [error-unauthorized]"
}

Change Log

Last updated

Rocket.Chat versions receive support for six months after release.