Granting User Access
#
Creating a userUsers can be created in the following way - we recommend inserting the following post-signup.
vc.users.create('user_id', 'customer_org_id')
#
Granting a permissionUsers can be granted permissions for a certain resource object - this should be done anytime a user is granted access to a set of resources
vc.users.grant_action('user_id', 'action', 'resource_object_id', 'resource_type')
#
All OperatorYou can use VistaClient.ALL
in place where resource_id or resource_type is accepted to indicate all.