WorkOS · Schema
RedirectUri
AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP
Properties
| Name | Type | Description |
|---|---|---|
| object | string | The object type. |
| id | string | The ID of the redirect URI. |
| uri | string | The redirect URI. |
| default | boolean | Whether this is the default redirect URI. |
| created_at | string | The timestamp when the redirect URI was created. |
| updated_at | string | The timestamp when the redirect URI was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RedirectUri",
"title": "RedirectUri",
"type": "object",
"properties": {
"object": {
"type": "string",
"description": "The object type.",
"const": "redirect_uri"
},
"id": {
"type": "string",
"description": "The ID of the redirect URI.",
"example": "ruri_01EHZNVPK3SFK441A1RGBFSHRT"
},
"uri": {
"type": "string",
"description": "The redirect URI.",
"example": "https://example.com/callback"
},
"default": {
"type": "boolean",
"description": "Whether this is the default redirect URI.",
"example": true
},
"created_at": {
"type": "string",
"description": "The timestamp when the redirect URI was created.",
"example": "2026-01-15T12:00:00.000Z"
},
"updated_at": {
"type": "string",
"description": "The timestamp when the redirect URI was last updated.",
"example": "2026-01-15T12:00:00.000Z"
}
},
"required": [
"object",
"id",
"uri",
"default",
"created_at",
"updated_at"
]
}