Auth0 · Schema
CreateEventStreamRedeliveryRequestContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| date_from | string | An RFC-3339 date-time for redelivery start, inclusive. Does not allow sub-second precision. |
| date_to | string | An RFC-3339 date-time for redelivery end, exclusive. Does not allow sub-second precision. |
| statuses | array | Filter by status |
| event_types | array | Filter by event type |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateEventStreamRedeliveryRequestContent",
"title": "CreateEventStreamRedeliveryRequestContent",
"type": "object",
"additionalProperties": false,
"properties": {
"date_from": {
"type": "string",
"description": "An RFC-3339 date-time for redelivery start, inclusive. Does not allow sub-second precision.",
"maxLength": 20,
"format": "date-time"
},
"date_to": {
"type": "string",
"description": "An RFC-3339 date-time for redelivery end, exclusive. Does not allow sub-second precision.",
"maxLength": 20,
"format": "date-time"
},
"statuses": {
"type": "array",
"description": "Filter by status",
"items": {
"$ref": "#/components/schemas/EventStreamDeliveryStatusEnum"
}
},
"event_types": {
"type": "array",
"description": "Filter by event type",
"items": {
"$ref": "#/components/schemas/EventStreamEventTypeEnum"
}
}
}
}