Skip to content

Commit 076365c

Browse files
committed
initial staging
1 parent 3b9d26c commit 076365c

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

articles/active-directory/verifiable-credentials/TOC.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@
7979
# href:
8080
- name: End to End Demo
8181
href: https://woodgroveemployee.azurewebsites.net/
82+
- name: Architecture and Deployment
83+
expanded: true
84+
items:
85+
- name: Remote onboarding
86+
href: remote-onboarding-new-employees-id-verification.md
8287
- name: Reference
8388
expanded: true
8489
items:
Loading
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
title: Onboard new remote employees using ID verification
3+
description: A design pattern describing how to onboard new employees remotely
4+
services: decentralized-identity
5+
author: barclayn
6+
manager: amycolannino
7+
ms.service: decentralized-identity
8+
ms.subservice: verifiable-credentials
9+
ms.topic: conceptual
10+
ms.date: 02/23/2023
11+
ms.author: barclayn
12+
---
13+
14+
15+
# Onboard new remote employees using ID verification
16+
17+
Onboarding to IT systems is a challenging step because the user being onboarded is not in the trust boundary yet. Verified IDs can help to establish trust based on identity verification by using attestations based from government-issued documents.
18+
19+
## When to use this pattern
20+
21+
1. Customer has modern HR system with API support that allows programmatic integration to query the HR system to do a reliable matching of user profiles.
22+
23+
2. Customer already has started their passwordless journey.
24+
25+
## Solution
26+
27+
1. Custom portal for employee onboarding
28+
29+
2. A backend job sends the new hire is provided a uniquely identifiable link to that portal from (A) that represents the new hire’s specific process. For this use case, the account for the new hire should already be provisioned in Azure AD. Consider using [Lifecycle Workflows](../governance/what-are-lifecycle-workflows.md) as the triggering point of this flow.
30+
31+
3. New hire clicks the link to the portal in (A) above and it is guided through a wizard-like experience:
32+
33+
- Step 1: **New Hire** is redirected to acquire a verified ID from the Identity verification partner (also referred to IDV. To learn more about the identity verification partners: <https://aka.ms/verifiedidisv>)
34+
35+
- Step 2: **New Hire** presents the Verified ID acquired in Step 1
36+
37+
- Step 3: System receives the claims from identity verification partner, looks up the user account for the new hire and performs the validation. For considerations on how to perform the user lookup, [k]()
38+
39+
- Step 4: System executes the onboarding logic to locate the Azure AD account of the user, and [generate a temporary access pass using MS Graph](https://learn.microsoft.com/graph/api/resources/temporaryaccesspassauthenticationmethod?view=graph-rest-1.0)
40+
41+
![High level flow diagram](media/remote-onboarding-new-employees-id-verification/high-level-flow-diagram.png
42+
43+
## Issues and considerations
44+
45+
1. The link that is used to initiate the process needs to:
46+
47+
- Be specific to the remote employee.
48+
- Be valid for a short period of time.
49+
- Become invalid after the user completes the flow..
50+
- Be designed with a mechanism to correlate the link to the unique identifier of the HR Record, and the Azure AD account should be defined and used to validate when the new hire comes to the site.
51+
52+
2. It is not uncommon to have discrepancies between the claims in the VC and the attributes in IT systems (HR/Directory) for legitimate users. For example, an employee might have a first name “James” but his profile says “Jim”. For those scenarios:
53+
54+
1. At the beginning of the HR process, ask candidates to provide the name exactly as it appears in government issued documents when they first are created in the HR system, and ask separately the name the user might prefer. This will simplify the validation logic
55+
56+
2. Design validation logic to include attributes that are more likely to have an exact match against the HR system. Common attributes include street address, date of birth, nationality, national identification number (if applicable), in addition to first and last name.
57+
58+
3. As a fallback, plan for human review to disambiguate lookups who result in ambiguous/non-conclusive results. This might include temporarily storing the attributes presented in the VC, phone call with the user, etc.
59+
60+
3. For multinational organizations, customers might need to work with different identity proofing partners based on the region of the user.
61+
62+
4. Assume that the initial interaction between the user and the onboarding partner is untrusted. The onboarding portal should generate detailed auditing on each specific request / notification generated for auditing purposes.
63+
64+
## Additional resources
65+
66+
- Public architecture document for generalized account onboarding: [Plan your Microsoft Entra Verified ID verification solution](plan-verification-solution.md#account-onboarding)

0 commit comments

Comments
 (0)