You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns events for an organization within a specified time range.
24
+
The org_id and reqired token can be directly submitted as parameters, but is much easier to use Connect-Verkada to cache this information ahead of time and for subsequent commands.
25
+
26
+
## EXAMPLES
27
+
28
+
### EXAMPLE 1
29
+
```
30
+
Get-VerkadaAccessEvents
31
+
This will return all the access events from 1 hour in the past until present. The org_id and token will be populated from the cached created by Connect-Verkada.
The optional start time for the date range of events
89
+
90
+
```yaml
91
+
Type: DateTime
92
+
Parameter Sets: (All)
93
+
Aliases:
94
+
95
+
Required: False
96
+
Position: 4
97
+
Default value: None
98
+
Accept pipeline input: False
99
+
Accept wildcard characters: False
100
+
```
101
+
102
+
### -end_time
103
+
The optional end time for the date range of events
104
+
105
+
```yaml
106
+
Type: DateTime
107
+
Parameter Sets: (All)
108
+
Aliases:
109
+
110
+
Required: False
111
+
Position: 5
112
+
Default value: None
113
+
Accept pipeline input: False
114
+
Accept wildcard characters: False
115
+
```
116
+
117
+
### -event_type
118
+
The optional event type/s for the events
119
+
120
+
```yaml
121
+
Type: String[]
122
+
Parameter Sets: (All)
123
+
Aliases:
124
+
125
+
Required: False
126
+
Position: 6
127
+
Default value: None
128
+
Accept pipeline input: False
129
+
Accept wildcard characters: False
130
+
```
131
+
132
+
### -side_id
133
+
The optional site_id/s for the events
134
+
135
+
```yaml
136
+
Type: String[]
137
+
Parameter Sets: (All)
138
+
Aliases:
139
+
140
+
Required: False
141
+
Position: 7
142
+
Default value: None
143
+
Accept pipeline input: False
144
+
Accept wildcard characters: False
145
+
```
146
+
147
+
### -device_id
148
+
The optional device_id/s for the events
149
+
150
+
```yaml
151
+
Type: String[]
152
+
Parameter Sets: (All)
153
+
Aliases:
154
+
155
+
Required: False
156
+
Position: 8
157
+
Default value: None
158
+
Accept pipeline input: False
159
+
Accept wildcard characters: False
160
+
```
161
+
162
+
### -user_id
163
+
The optional user_id/s for the events
164
+
165
+
```yaml
166
+
Type: String[]
167
+
Parameter Sets: (All)
168
+
Aliases:
169
+
170
+
Required: False
171
+
Position: 9
172
+
Default value: None
173
+
Accept pipeline input: False
174
+
Accept wildcard characters: False
175
+
```
176
+
177
+
### -errorsToFile
178
+
Switch to write errors to file
179
+
180
+
```yaml
181
+
Type: SwitchParameter
182
+
Parameter Sets: (All)
183
+
Aliases:
184
+
185
+
Required: False
186
+
Position: Named
187
+
Default value: False
188
+
Accept pipeline input: False
189
+
Accept wildcard characters: False
190
+
```
191
+
192
+
### -ProgressAction
193
+
{{ Fill ProgressAction Description }}
194
+
195
+
```yaml
196
+
Type: ActionPreference
197
+
Parameter Sets: (All)
198
+
Aliases: proga
199
+
200
+
Required: False
201
+
Position: Named
202
+
Default value: None
203
+
Accept pipeline input: False
204
+
Accept wildcard characters: False
205
+
```
206
+
207
+
### CommonParameters
208
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
Returns Verkada Access Control events using https://apidocs.verkada.com/reference/geteventsviewv1
5
+
6
+
.DESCRIPTION
7
+
Returns events for an organization within a specified time range.
8
+
The org_id and reqired token can be directly submitted as parameters, but is much easier to use Connect-Verkada to cache this information ahead of time and for subsequent commands.
This will return all the access events from 1 hour in the past until present. The org_id and token will be populated from the cached created by Connect-Verkada.
0 commit comments