Invite users
POST
/api/service/users
Invite one or many users in Atlan. Note that you will need the unique roleId
GUID for your environment to distinguish between admin, member and guests. You can find these GUIDs in the response from the List roles
operation.
POST /api/service/users
curl \
-X POST https://tenant.atlan.com/api/service/users \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"users":[{"email":"jsmith@example.com","roleName":"$member","roleId":"620172e0-81df-4d30-a8b3-f92a69badd04"}]}'
Request example
{
"users": [
{
"email": "jsmith@example.com",
"roleName": "$member",
"roleId": "620172e0-81df-4d30-a8b3-f92a69badd04"
}
]
}
Response example (200)
{}
Response example (500)
{
"jsmith@example.com": "409 Conflict: User exists with the same email"
}