app_list_tickets
Returns all tickets from u_users/{userd_id}/tickets.
Endpoint
POST https://{region}-{project}.cloudfunctions.net/app_list_tickets
Request
The user’s Firestore UID.
{
"data": {
"userd_id": "uid_abc123"
}
}
Response
Array of ticket objects from the user’s wallet.
Full ticket ID (e.g., eventId-ticketId).
Ticket creation timestamp.
Whether the ticket is active.
Transfer mode if transferred: "online" or "offline".
Audit log of ticket actions.
{
"message": "Tickets encontrados",
"status": 200,
"data": {
"valido": true,
"tickets": [
{
"ticket_id": "abc123-def456",
"event_id": "abc123",
"event_name": "Caracas Live 2025",
"zone": "VIP",
"seat_id": "VIP-1",
"customer_name": "Juan Pérez",
"status": true
}
]
}
}
app_list_tickets_events
Same as app_list_tickets but filtered by a specific event ID.
Endpoint
POST https://{region}-{project}.cloudfunctions.net/app_list_tickets_events
Request
The user’s Firestore UID.
Event ID to filter tickets by.