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.
Sign in to see the current vote count, add your own vote, or leave a comment.
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'
Although we are extremely proficient when it comes to reducing load on our smartsheets (we use pivot, data mesh and data shuttle extensively), we still find ourselves hitting capacity limits (mostly because of the number of columns in conjunction with some pretty complex formulas). Breaking up data between sheets and…
Be able to print and/or export Workflow Automations in PDF and/or export to Visio. this would be used for document control and troubleshooting aid
Problem Smartsheet environments quickly become cluttered with inactive Sheets, Reports, and Dashboards that are no longer viewed or updated. This creates confusion for users and significant overhead for admins, especially in large or regulated environments. There is currently no native way to automatically identify, notify…