Create tenant using API and assign existing user

I need to allow a company to create their own tenants and use a single user to access all tenants they create. Does the API allow to assign an existing user? It doesn’t show in Postman so if it’s not supported I’m hoping that can be added.

I figured this one out looking at the post data when adding a new tenant.
In case it helps anybody out here’s some example user data to post.

"user"              => array(
    "assign_to_existing_user" => "1",
    "user_id" => "166",
    "startapp"   => "dashboard",
    "role_id"    => "4"
),

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.