Depending on your use case, Verkada Command has the ability to integrate with Microsoft Entra ID, amongst other Identify Providers [IdPs], in the following capacities:
Security Assertion Markup Language (SAML)
System for Cross-Domain Identity Management (SCIM)
SAML handles the authentication side of things allowing Microsoft Entra ID to be used to manage access to Command, the same as any other Software as a Service (SaaS) application already integrates into your Microsoft Entra ID tenant. This means that you can incorporate Command into your existing identity framework and authorize users based on your current policies.
SCIM allows you to leverage your existing users and groups already present in Microsoft Entra ID and synchronize these with Command. This allows you to retain the current central IdP, and configure permissions in Command using your existing users and groups.
Set up SCIM in Microsoft Entra ID
Before you configure SCIM in Microsoft Entra ID, you need to generate your secret token from Command:
Go to All Products > Admin > Privacy & Security > SCIM Configuration.
Add the email domain. This generates the token, which is only viewable once. To generate a new token, you need to refresh it.
Click Add Domain, type all relevant email domains you plan to use with SCIM, and then click Copy for later use. If you did not copy your token and it is not visible, click Refresh to generate a new token.
From the Microsoft Entra ID homepage, select Enterprise applications > New application > Create your own application.
Select the non-gallery application, name the application, and click Create.
Under Provision User Accounts, click Get started (twice).
On the provisioning page:
a. Set the Provisioning Mode to Automatic.
b. Set the Tenant URL as:
For US orgs: https://api.command.verkada.com/scim
For EU orgs: https://scim.prod2.verkada.com/scim
For AUS orgs: https://scim.prod-ap-syd.verkada.com/scim
Note: To confirm which region you're located, please refer to where your organization was created for Verkada.
Fill in your previously-generated secret token.
Click Test Connection. You should see a confirmation that the SCIM connection is successful.
Click Save to continue. (The attribute mappings do not appear if you do not click Save.)
Configure attributes for Microsoft Entra ID groups
Click to expand the Mappings dropdown, then select Provision Microsoft Entra ID Groups.
To adhere to Microsoft Entra ID default mapping suggestions, you need to add custom mappings for the customappsso column:
(Optional) If you need to add a mapping:
Click Save and confirm changes, if necessary.
At the top of the page, select Provisioning to return to the Provisioning page.
Configure attributes for Microsoft Entra ID users
Select Provision Microsoft Entra ID Users to make changes to the user mappings.
Configure your mappings to match the screenshot or the data table (as shown below). The Switch attribute is added as an Expression mapping type.
Note: If any of the customappsso attributes are not available as a Target Attribute, you may need to add them to your Microsoft Entra ID platform as an option. To do so, check the Show advanced options box and click Edit attribute list for customappsso.
Note: SCIM-managed users no longer have the option to edit their phone number in Command; instead, only provision via SCIM. On the IDP side, you can set up your attribute mapping such that any field in your IDP instance maps to thephone number
field in Command. You can also set it up such that theno
field in the IDP maps to thephone number
field in Command. However, even in that case, phone numbers continue to be alocked
field in Command and can only be edited through SCIM. If you have questions or need further assistance, contact Verkada Support.
Add employeeNumber, department, and organization > click Save. Do not edit existing attributes.
Click Save, confirm your changes, and at the top of the page, select Provisioning to return to the Provisioning page.
Once finished with the mappings, toggle on the Provisioning Status.
Depending on the requirements, adjust the scope to one of the required options:
Sync all users and groups
Sync only assigned users and groups. Ensure users and groups are assigned to the enterprise application under Users and Groups. Those that are assigned are the ones provisioned and become present in Command.
Verify that the provisioning is set to On, and that users are assigned to the application.
Once the initial provisioning cycle has elapsed:You should see the total number of users and groups that have been provisioned successfully.
In Command, you should be able to see these users and groups populated with the SCIM Managed tag associated. These synchronized users and groups can now be used in Command and assigned to permissions to control access to the Command platform.
(Optional) Add access credentials to SCIM users
Configure Attributes on your Entra SCIM Application
Log in to your Azure portal.
In the search bar, type and select Enterprise Applications.
Select your Verkada SCIM application.
On the left panel, click Manage > Provisioning.
Under Manage Provisioning, click Edit Attribute Mappings.
Expand the Mappings submenu and select Provision Microsoft Entra ID Users.
At the bottom, click Show advanced options > Edit attribute list for customappsso.
Add the attributes from the table below to the bottom
Click Save.
Go back to Provision Microsoft Entra ID Users and select Add New Mapping.
Use extensionAttributes 1-5 as Source Attributes and map them to the new attributes we created using Card Format, Card Number, Card Number Hex, Credential Status, and Facility Code as the target attributes.
Click Save.
Attribute table
Name | Type |
urn:ietf:params:scim:schemas:extension:verkada:access:2.0:User:cardFormat | String |
urn:ietf:params:scim:schemas:extension:verkada:access:2.0:User:cardNumber | String |
urn:ietf:params:scim:schemas:extension:verkada:access:2.0:User:cardNumberHex | String |
urn:ietf:params:scim:schemas:extension:verkada:access:2.0:User:credentialStatus | String |
urn:ietf:params:scim:schemas:extension:verkada:access:2.0:User:facilityCode | String |
Edit the App Registration
Every SCIM enabled Enterprise Application created on Entra AD typically requires its own App Registration.
In the search bar, type and select App registrations.
Switch to the All Applications tab and search for the name of your Verkada SCIM application.
On Overview, note your App Registration’s Application (client) ID and Directory (tenant) ID. You will need these later to configure credentials for your Command application from your app registration.
On the left navigation, click Manage.
Under Certificates & secrets:
Click New client secret.
Set the Description to "Verkada SCIM Credentials" and set your preferred certificate expiration date.
Copy and store the value displayed in the Value of the new Client Secret created. This will only be displayed once.
Under API Permissions:
Click Add Permissions > Microsoft Graph.
Select Application Permissions and search for "User.ReadWrite.All”.
To avoid having to manually review and approve all stage changes communicated between Azure Entra and your Command application, select Grant admin consent for Default Director.
Refer to this list of credentials for the list of acceptable card formats.
Access and update your credentials
To set the extension attributes and the credential information for a particular user, use the Graph API instructions at: https://learn.microsoft.com/en-us/graph/extensibility-overview.
Note that setting the credentialStatus attribute to active when setting up a credential for a user is necessary to successfully sync credentials with Command.
Example:
curl --request PATCH \
--url 'https://graph.microsoft.com/v1.0/users/yourusersid' \
--header "Authorization: Bearer $TOKEN" \
--header "Content-Type: application/json" \
--data
'{"onPremisesExtensionAttributes":
{"extensionAttribute1": "Standard 26-bit Wiegand",
"extensionAttribute2": "1111",
"extensionAttribute3": "1",
"extensionAttribute4": "active",
"extensionAttribute5": "111"
}
}'
Where credential status (credentialStatus) is extensionAttribute4.
Need more help? Contact Verkada Support.