The event detail endpoint returns the completeDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/CristianRR94/springCommunity/llms.txt
Use this file to discover all available pages before exploring further.
EventoDTO representation of a single event. Unlike the listing endpoints, which return lightweight EventoPrincipalDTO summaries, this response includes all editable metadata fields as well as the full lists of participant IDs and administrator IDs associated with the event. Use this endpoint whenever you need to render an event detail view or pre-populate an edit form.
Endpoint
Authorization header.
Path Parameters
The event’s unique numeric database ID. This value is returned as
id in every listing or creation response.Response
Returns a singleEventoDTO JSON object.
The event’s unique numeric identifier.
The display name of the event. Never blank; maximum 255 characters.
An optional type or category label for the event. Maximum 255 characters.
null if not set.The scheduled date of the event in ISO 8601 format (
YYYY-MM-DD). null if no date was provided.A free-text description or additional information about the event.
null if not set.A chat identifier or thread reference associated with the event.
null if not set.The server-side filename of the event’s banner image.
null if no image was uploaded.When
true, the event is marked as private and should not be displayed in public listings.When
true, the event is hidden entirely from all views except for its direct participants.The maximum number of participants allowed. Range:
0–255. The default is 255.A list of participant IDs (database primary keys) that are enrolled in this event.
A list of participant IDs that have administrator privileges over this event. Every administrator is also present in
participantesEvento.Response Example
Error Responses
| Status | Description |
|---|---|
401 Unauthorized | The Authorization header is missing, the token has expired, or the token signature is invalid. |
404 Not Found | No event exists with the supplied id. |