While working with the Directory API I saw in the Users.list response a trigger_event field. I can't find any documentation on this. Is there any information on this property?
Asked
Active
Viewed 48 times
0
-
Can you provide a screenshot of the Users.list response a trigger_event field and your code for adding a user? – Mr.Rebot Oct 02 '16 at 08:14
1 Answers
1
I think this is the event
parameter in Users.watch
(watch for changes in users list). The event
parameter is a string
"Events to watch for" and acceptable values are:
- "add": User Created Event
- "delete": User Deleted Event
- "makeAdmin": User Admin Status Change Event
- "undelete": User Undeleted Event
- "update": User Updated Event
in the Google documentation.

Peter
- 5,501
- 2
- 26
- 42