Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.43 KB

UpdateUserOrgRoleData.md

File metadata and controls

31 lines (22 loc) · 1.43 KB

UpdateUserOrgRoleData

Properties

Name Type Description Notes
organization_id str The id of the organization to update the user for.
role int Either 0 (user), 1 (admin), or 2 (owner). If not provided, the current role will be used. The auth'ed user must have a role greater than or equal to the role being assigned.
user_id str The id of the user to update, if not provided, the auth'ed user will be updated. If provided, the auth'ed user must be an admin (1) or owner (2) of the organization. [optional]

Example

from trieve_py_client.models.update_user_org_role_data import UpdateUserOrgRoleData

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateUserOrgRoleData from a JSON string
update_user_org_role_data_instance = UpdateUserOrgRoleData.from_json(json)
# print the JSON string representation of the object
print(UpdateUserOrgRoleData.to_json())

# convert the object into a dict
update_user_org_role_data_dict = update_user_org_role_data_instance.to_dict()
# create an instance of UpdateUserOrgRoleData from a dict
update_user_org_role_data_form_dict = update_user_org_role_data.from_dict(update_user_org_role_data_dict)

[Back to Model list] [Back to API list] [Back to README]