WorkOS · Schema

ExternalAuthCompleteResponse

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
redirect_uri string URI to redirect the user back to AuthKit to complete the OAuth flow.
View JSON Schema on GitHub

JSON Schema

workos-externalauthcompleteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalAuthCompleteResponse",
  "title": "ExternalAuthCompleteResponse",
  "type": "object",
  "properties": {
    "redirect_uri": {
      "type": "string",
      "description": "URI to redirect the user back to AuthKit to complete the OAuth flow.",
      "example": "https://your-authkit-domain.workos.com/oauth/authorize/complete?state=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdGF0ZSI6InJhbmRvbV9zdGF0ZV9zdHJpbmciLCJpYXQiOjE3NDI2MDQ4NTN9.abc123def456ghi789"
    }
  },
  "required": [
    "redirect_uri"
  ]
}