WorkOS · Schema

SsoAuthorizeUrlResponse

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
url string An OAuth 2.0 authorization URL.
View JSON Schema on GitHub

JSON Schema

workos-ssoauthorizeurlresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SsoAuthorizeUrlResponse",
  "title": "SsoAuthorizeUrlResponse",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "An OAuth 2.0 authorization URL.",
      "example": "https://accounts.google.com/o/oauth2/v2/auth?client_id=example&redirect_uri=https%3A%2F%2Fapi.workos.com%2Fsso%2Fcallback&response_type=code&scope=openid%20profile%20email"
    }
  },
  "required": [
    "url"
  ]
}