Hello,
I found that you can have two users, each in a different database, with the same user_id. This presents a problem when calling management APIs that take a single parameter: the user_id.
I created two users as mentioned above: same user_id, different dbs. Then I did the following using the management API -
Get user: returned the first user I created.
Update user: updated the second user I created.
Delete user: deleted the second user I created.
Is there a way around this? If those APIs took a db connection id parameter it would work.