@contio/partner-sdk - v1.7.1
    Preparing search index...

    Function buildSSOEntryUrl

    • Build the SSO entry URL for a partner Partners redirect users to this URL to initiate SSO

      Parameters

      Returns string

      The complete SSO entry URL

      // Basic usage - shows landing page, redirects to web
      const url = buildSSOEntryUrl({ slug: 'acme-corp' });
      // Returns: https://app.contio.ai/p/acme-corp

      // Auto-redirect to IdP (no landing page), open desktop app
      const url = buildSSOEntryUrl({
      slug: 'acme-corp',
      target: 'desktop',
      loginHint: 'user@example.com',
      auto: true
      });
      // Returns: https://app.contio.ai/p/acme-corp?target=desktop&login_hint=...&auto=true

      // Deep link to a specific meeting
      import { buildMeetingTarget } from '@contio/partner-sdk';
      const url = buildSSOEntryUrl({
      slug: 'acme-corp',
      target: buildMeetingTarget('550e8400-e29b-41d4-a716-446655440000'),
      auto: true
      });

      // Deep link to backlog view
      const url = buildSSOEntryUrl({
      slug: 'acme-corp',
      target: 'backlog',
      auto: true
      });