WorkOS · Schema

CreateCorsOriginDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
origin string The origin URL to allow for CORS requests.
View JSON Schema on GitHub

JSON Schema

workos-createcorsorigindto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCorsOriginDto",
  "title": "CreateCorsOriginDto",
  "type": "object",
  "properties": {
    "origin": {
      "type": "string",
      "description": "The origin URL to allow for CORS requests.",
      "example": "https://example.com"
    }
  },
  "required": [
    "origin"
  ]
}