WorkOS · Schema

CreateRedirectUriDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
uri string The redirect URI to create.
View JSON Schema on GitHub

JSON Schema

workos-createredirecturidto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRedirectUriDto",
  "title": "CreateRedirectUriDto",
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "description": "The redirect URI to create.",
      "example": "https://example.com/callback"
    }
  },
  "required": [
    "uri"
  ]
}