Statuses represent the availability state of an event at any given moment. Eventify ships with three seeded status values — Disponible (available), Agotado (sold out), and Finalizado (finished) — and every event record references one of these via itsDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/astrxnomo/eventify-app/llms.txt
Use this file to discover all available pages before exploring further.
status_id foreign key. The statuses API exposes a single read-only endpoint that returns the full list of status records so that client applications can resolve status IDs to their human-readable names, render availability badges, or build filter controls.
Statuses are managed by administrators through the Eventify dashboard. Some status transitions are automated by the system: when an event’s
capacity reaches 0 (all tickets sold), the system automatically sets the event’s status_id to 2 (Agotado). Manual overrides are possible through the admin panel. There is no write endpoint for statuses in the API.The status object
Auto-incremented primary key uniquely identifying the status.
Human-readable display name for the status (e.g.
"Disponible", "Agotado", "Finalizado").ISO 8601 datetime string set automatically when the record is first created.
ISO 8601 datetime string updated automatically whenever the record is modified.
Seeded statuses
The following three statuses are present in every Eventify installation. Use these IDs when settingstatus_id on event create or update requests.
| ID | Name | Meaning |
|---|---|---|
1 | Disponible | The event is open and tickets are available for purchase. This is the default status assigned to newly created events. |
2 | Agotado | All capacity has been filled — the event is sold out. Set automatically by the system when capacity reaches 0. |
3 | Finalizado | The event has concluded. Typically applied after the event’s end_date has passed. |