Set Notification Types for Users


How would one do something like the deadlinecommand:

deadlinecommand -SetUser first.last email machineName true true ["Completed,“Warning”]

Docs for the above deadlinecommand command

I feel so close to the solution but am struggling to figure anyway to do this through deadlinecommand, standalone, and regular python api. It’s just missing from editable attributes it seems.

Hello! It can’t be done via Deadlinecommand, but the regular API has the power.

First get a UserInfo object with GetUserInfo().

Toggle the options on the UserInfo object you’re interested in with the UserJobFailed(and similar) options.

Then save the UserInfo object you’ve updated with SaveUserInfo().

Let us know if you have any issues or questions!