Zendesk provides three types of JWT, each serving a unique purpose.
JWT SSO Login: This type is used for single sign-on, allowing users to authenticate once and access Zendesk without needing separate credentials. It's a seamless way to integrate user authentication across systems.
JWT Authentication for Messaging (Web Widget): This ensures that end users are verified before starting a messaging conversation, allowing agents to confidently interact with users and access past interactions.
JWT Authentication for Chat (Web Widget Classic): This is used with the Web Widget Classic to authenticate visitors on every page load using the Javascript API and JWT token.
For more details, you can check theoriginal documentation.
JWT SSO Login in Zendesk allows users to authenticate once and access the platform without additional sign-ins. This JWT type is designed for single sign-on, a mechanism that lets you authenticate users in your systems and inform Zendesk of their…
JWT Authentication for Messaging in Zendesk verifies end users before they start a conversation. This type of JWT is used to authenticate users in messaging, ensuring that agents can trust the identity of the users they are interacting with. It…
JWT Authentication for Chat in Zendesk's Web Widget Classic authenticates visitors on every page load. Using the Javascript API and JWT token, this type of authentication ensures that each visitor is verified whenever they load a page. This is…
If a JWT token expires in Zendesk, the user will need to re-login or enter as a guest. When a token expires, a 401 error is returned, indicating that the JWT is invalid. In such cases, the visitor should enter as a 'guest' until they can…