Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to see the current vote count, add your own vote, or leave a comment.
I would like to see a report in Resource Management that shows which users have accepted their invitations, and which ones are pending. This would make it easier to follow up with users who may be having difficulty joining.
Yes, please! This should be a requirement for an enterprise-level customer.
I'm using the API for this:
def pending(): # Getting the users to check for pending status email_result = requests.get("{}{}".format(BASEURL, USERS_API), headers={'Content-Type': 'application/json', 'auth': '{}'.format(ACCESS_TOKEN)}) # Get the json object from the response user_list_result = email_result.json() # Find users with pending invitations and print them for user in user_list_result["data"]: if user["invitation_pending"]: print("User {} still has an invitation pending.".format(user["display_name"])) return 'Pending Invitation Report Completed'
Sign in to comment or add your vote.