-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from bepsoccer/dev
fix
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,13 +61,13 @@ This will add the access user with the name "New User" and email newUser@contoso | |
|
||
### EXAMPLE 6 | ||
``` | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -includeBadge -cardType 'HID' -facilityCode 111 -cardNumber 55555 -pinCode '12345' | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -cardType 'HID' -facilityCode 111 -cardNumber 55555 -pinCode '12345' | ||
This will add the access user with the name "New User" and email [email protected] with an HID badge 111-55555 and a pin code of 12345. The org_id and tokens will be populated from the cached created by Connect-Verkada. | ||
``` | ||
|
||
### EXAMPLE 7 | ||
``` | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -includeBadge -cardType 'HID' -facilityCode 111 -cardNumber 55555 -groupId 'df76sd-dsc-group1','dsf987-daf-group2' | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -cardType 'HID' -facilityCode 111 -cardNumber 55555 -groupId 'df76sd-dsc-group1','dsf987-daf-group2' | ||
This will add the access user with the name "New User" and email [email protected] with an HID badge 111-55555 and in groups df76sd-dsc-group1 and dsf987-daf-group2. The org_id and tokens will be populated from the cached created by Connect-Verkada. | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,11 +32,11 @@ function Add-VerkadaAccessUser | |
This will add the access user with the name "New User" and email [email protected] in department defined as sales with departmnetId of US-Sales with the appropriate employeeID, Title, and Company. The org_id and tokens will be populated from the cached created by Connect-Verkada. | ||
.EXAMPLE | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -includeBadge -cardType 'HID' -facilityCode 111 -cardNumber 55555 -pinCode '12345' | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -cardType 'HID' -facilityCode 111 -cardNumber 55555 -pinCode '12345' | ||
This will add the access user with the name "New User" and email [email protected] with an HID badge 111-55555 and a pin code of 12345. The org_id and tokens will be populated from the cached created by Connect-Verkada. | ||
.EXAMPLE | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -includeBadge -cardType 'HID' -facilityCode 111 -cardNumber 55555 -groupId 'df76sd-dsc-group1','dsf987-daf-group2' | ||
Add-VerkadaAccessUser -firstName 'New' -lastName 'User' -email '[email protected]' -cardType 'HID' -facilityCode 111 -cardNumber 55555 -groupId 'df76sd-dsc-group1','dsf987-daf-group2' | ||
This will add the access user with the name "New User" and email [email protected] with an HID badge 111-55555 and in groups df76sd-dsc-group1 and dsf987-daf-group2. The org_id and tokens will be populated from the cached created by Connect-Verkada. | ||
#> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters