Setting Up Polyguard for Help Desk¶
This page walks you through configuring Polyguard for help desk identity verification -- from creating your first help desk Link to integrating with your ticketing system and receiving verification results via webhooks.
Prerequisites¶
Before you begin, make sure you have:
- A Polyguard account with administrator privileges
- Access to the Polyguard Console at console.polyguard.ai
- Your ticketing system ready for integration (optional but recommended)
Employee onboarding
Employees will need the Polyguard Mobile app installed on their smartphones to complete identity verification. If your organization already uses Polyguard for secure meetings, employees may already have the app set up. If not, you can include the app download link in your help desk verification emails.
Step 1: Create a Help Desk Link¶
A Link in Polyguard is a reusable trust check configuration that defines what identity proofs are required. For help desk verification, you will create a Link specifically designed for credential reset scenarios.
- Log in to the Polyguard Console at console.polyguard.ai.
- Navigate to Links in the left sidebar.
- Click Create Link.
- Enter a descriptive name, such as "Help Desk Identity Verification" or "Password Reset Verification".
- Configure the required proofs for your Link.
Recommended Proofs for Help Desk¶
For password and MFA reset scenarios, we recommend requiring:
| Proof | Purpose | Recommended |
|---|---|---|
| Face Biometric | Confirms the person matches their identity credential via real-time facial recognition | Always |
| Device Identity | Verifies the request comes from a trusted, uncompromised device using hardware attestation | Always |
| Phone Number | Confirms the employee controls the phone number on file | Optional |
| Geographic Location | Shares the employee's state and country during verification | Optional |
| Employment Verification | Confirms the person is a current employee via corporate directory | Optional |
Start with the essentials
Face Biometric and Device Identity together provide strong assurance that the caller is who they claim to be and is using a legitimate device. You can add additional proofs later as your security requirements evolve.
- Set any additional Link options (expiration, single-use vs. reusable).
- Click Save.
Step 2: Configure Email and SMS Templates¶
When an agent initiates a verification, Polyguard sends the trust check link to the employee via email, SMS, or both. You can customize the message templates to match your organization's tone and branding.
- In the Polyguard Console, navigate to Settings > Notifications.
- Edit the email template and/or SMS template for help desk verifications.
- Include your organization's name, a brief explanation of why the employee is receiving the link, and any relevant help desk contact information.
Phishing awareness
Consider adding a line to your templates that tells employees they should only complete verification if they initiated a help desk request. This helps reinforce your organization's security culture.
Step 3: Integrate with Your Ticketing System¶
Polyguard integrates with popular IT Service Management (ITSM) platforms so agents can trigger identity verification directly from a ticket -- without switching to a separate tool.
Supported Integrations¶
- ServiceNow -- Trigger verifications from incident or request tickets
- Zendesk -- Send verification links from the agent sidebar
- Jira Service Management -- Initiate verification from issue workflows
- Custom integrations -- Use the Polyguard REST API and webhooks with any ticketing system
General Integration Steps¶
- In the Polyguard Console, navigate to Settings > Integrations.
- Select your ticketing platform.
- Follow the platform-specific setup instructions to connect your Polyguard account.
- Map the help desk Link you created in Step 1 to the appropriate ticket types or workflows (e.g., "Password Reset", "MFA Reset").
- Test the integration by creating a test ticket and sending a verification request.
No ticketing system?
If your help desk does not use a supported ticketing platform, agents can send verification links directly from the Polyguard Console. See MFA & Password Reset Verification for the manual workflow.
Step 4: Configure Webhooks¶
Webhooks allow Polyguard to send real-time verification results to your systems. This is useful for:
- Automatic ticket updates -- Mark a ticket as "identity verified" when the employee completes verification
- Audit logging -- Record verification events in your SIEM or security platform
- Conditional workflows -- Automatically approve or escalate requests based on verification results
Setting Up Webhooks¶
- In the Polyguard Console, navigate to Settings > Webhooks.
- Click Add Webhook.
- Enter the endpoint URL where Polyguard should send verification events.
- Select which events to receive:
trust_check.completed-- Sent when an employee successfully completes verificationtrust_check.failed-- Sent when a verification attempt failstrust_check.expired-- Sent when a verification link expires without being completed
- Copy the webhook signing secret -- you will use this to verify that incoming requests are genuinely from Polyguard.
- Click Save and test the webhook with a sample event.
Webhook Payload¶
Each webhook delivery includes:
| Field | Description |
|---|---|
event_type | The event that triggered the webhook (e.g., trust_check.completed) |
link_id | The ID of the Link used for verification |
session_id | The unique session ID for this verification |
timestamp | When the event occurred (ISO 8601) |
identity | Verified identity information (name, proofs completed) |
device | Device attestation details |
location | Geographic location at the administrative region level (if requested) |
metadata | Any custom metadata you attached when creating the session (e.g., ticket ID) |
Secure your webhook endpoint
Always validate the webhook signature using the signing secret before processing any verification result. Never trust a verification result that was not delivered through a signed webhook or retrieved directly from the Polyguard API.
Step 5: Test the Workflow¶
Before rolling out to your help desk team, run through the full workflow end to end:
- Create a test ticket (or use the Console directly).
- Send a verification link to yourself or a colleague.
- Complete the verification using the Polyguard Mobile app.
- Confirm that the verification result appears in the Console, your ticketing system (if integrated), and your webhook endpoint (if configured).
Once you are satisfied that the workflow is working correctly, train your help desk agents using the step-by-step guide in MFA & Password Reset Verification.
What's Next?¶
- MFA & Password Reset Verification -- The agent's step-by-step workflow for verifying identity during a reset request
- Audit Logs & Compliance -- How to access and use verification records after the fact