Getting Started with DeskDirector
Pricing & Subscription Plans
Browser Support
Deskdirector - Sign up walk through
Managing your DeskDirector Subscription
Logging in to DeskDirector
Automatic Contact Creation
What is the DeskDirector Admin Portal?
What is the DeskDirector Tech Portal?
What is the DeskDirector Client Portal?
DeskDirector Roles and Permissions
Feature Configuration for PSA Integrations
Tickets & Chats
A walk through all the fields available in DeskDirector forms
Getting Started with Custom Branding
Getting Started with Custom Email Templates
Getting Started with Surveys
Notifications & Broadcasts
Getting Started with the Menu System
BiggerBrains & Learning Center
The Developer Corner
Embedding Help Page Media
Permissions in DeskDirector
Managing Contacts
Tickets Access
Profile Pictures
Office Hours
How User Authentication works in DeskDirector
Getting Started with Searching in DeskDirector
Managing Members/Resources Profile
Enabling Master Admin
Get started with the DeskDirector Power Automate Connector
Top 10 Request Types
Using Markdown
Desktop Portal (Installed client) Vs. Web Portal (Web Client)
Managing Company Accounts
Monitoring Portal Usage
Service Radar
DeskDirector Desktop Portal
Main Tabs vs Ticket Tabs
Auditing and Analytics
Tech Portal Board/Queue Access Configuration
Installing the Desktop Portal
Features
Portal Customization
Service Catalogue
Forms
Getting started with DeskDirector Forms
DeskDirector Forms - Question Types in Detail
Dynamic Form Content
Communication
Actionable Messages for Emails
Real-Time Chats
Notifications
Email Notifications
Email Template Engine
Surveys
Broadcasts
Generative AI
DeskDirector with Generative AI
Setting up AI Service Providers
AI Assistants in DeskDirector
Custom Tools for AI Assistants
Knowledge Bases for AI Assistants
Ticket Summary for Tech Portal
Login & Authentication
Contact & User Groups
Approvals
Task Lists
Easy Integrations
Analytics
Dynamic Ticket Contents
The Learning Center
Webhooks
Events & Workflows
Group Tags
Custom Domains
File Storage
Integrations
ConnectWise
ConnectWise Custom Menu Item for DeskDirector
ConnectWise
ConnectWise Quotes & Invoices
StreamlineIT for DeskDirector Tech Portal
ConnectBooster
ConnectWise Sell
ConnectWise - Avoid Aggressive Notifications
AutoTask
QuoteWerks
Wise-Pay
TimeZest
BiggerBrains
OneNote Notebooks
Integrations - Frequently Asked Questions
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Setting up Content Security Policy (CSP)
Installing the Microsoft Teams App (Tech)
Setting up Tags for Teams Discussions (Tech)
Setting up DeskDirector for Microsoft Teams for your clients (Client mode)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
User Groups Integration with Microsoft Teams
Troubleshooting
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for Tech Users
Microsoft Power Automate
Actions
Solutions
Power Automate Template Gallery
Featured Solution: Teams Ticket Discussion
Featured Solution: Ticket Briefing
Introduction to Power Automate
Power Automate Connector - Setting up your first flow
DeskDirector Power Platform Connector Reference
DeskDirector Connector Triggers
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact & Service Agent Impersonation
Diagnose Entities Tool
DeskDirector Desktop App - Installation Issues
Troubleshooting DeskDirector Connection Issues
Login & Authentication - Common Issues
Permissions & Access - Common Issues
Tickets & Chats - Common Issues
Approvals - Common Issues
Email & Email Delivery - Common Issues
PSA Entity Syncing - Common Issues
PSA Integration - Common Issues
ConnectWise Integration - Common Issues
Autotask Integration - Common Issues
Switching PSA or merging with another CW/AT instance
ConnectWise Audit Trail - Exporting API Logs
Contact DeskDirector Support
Advanced Use
DeskDirector API
Subscribing to Chat Webhooks
Portal Deep Linking
Webhook Example with Zapier
Chat Session Payload
Get started with portal extension page demo
Dynamic content based on logged in user
Clean Tickets
Exporting Portal Usage
Security
Glossary
Release Notes
Client Portal
Server
Tech Portal
Portal Release Notes - Windows/macOS
Differences Between different Desktop Portal version
Release Notes - DeskDirector Teams App
Portal Release Notes - Web Client
Release Notes in the Admin Portal
Archived
- All Categories
- Advanced Use
- Get started with portal extension page demo
Get started with portal extension page demo
Updated
by Jason He
In this article, I will demonstrate how to setup sample extension page. By going through this process, you should have more detailed view on how access_token works and how it can help identify given user's identity.
1. Allow demo site's host
To allow cross origin query, we should add extension site's host to DeskDirector. Navigate Advanced > Developer Corner in the admin console.
Let's add demo page's host at bottom of Developer Corner page.
https://deskdirectorfiles.blob.core.windows.net

2. Create Menu Item
Create menu item for extension demo page. Head to admin console and navigate to Menu Items under Portal. (see: Creating Menu Items)
3. Setup New Menu Item
- Type: Extension Menu
- Extension Site's URL: https://deskdirectorfiles.blob.core.windows.net/media-public/demo/access_token_demo/access_token.html
- Enable Sandbox (Also enable following items)
- Allow Same Origin
- Allow Scripts
- Query Parameters (Enable following parameters)
- Access Token
Once setup your new menu item, click save to create.
4. Create New Menu Group
Navigate to Portal > Menu Group then click New Menu button (see: Menus). Add new the Extension Demo Page into new menu group by clicking on the "Add Menu Item" button.
Click Save once done.
5. Allow test contact to use newly created menu group
Navigate to Contacts under Portal. Then find a test contact.

Click and navigate into test contact and open Menu tab. Then change default menu group to the new menu group by clicking on "Change Menu Group" button, then save.

Now, you can impersonate this contact under profile tab. The extension page should be there.
6. View Demo Page
On page, it should display as following. The page knows the user that's curerntly logged in as xxx@xxxx.com email.

Code and Explanation of extension page
Extension demo page's source can be found here. At moment, Allow Same Origin for iFrame's SandBox is still required. In the future, we want to make this extension page work even without Allow Same Origin permission.
To display personalized content, One of difficulty is identifying the user or to achieve single sign on. That means, if user is logged inside the portal, menu extension page should allow automatically login to other external site.
To identify the user, DeskDirector introduced access_token. This means that menu items that are set as extension page and has access_token enabled, will have access_token passed in as query parameter. Which from the source code, we have code to extract it.
Access Token is secure and only available for one hour. The page you have constructed can also pass access token to your backend, then your backend can use access token to verify user and hand out cookie for your extension site.