Skip to main content
Credentials in TMT are named access passes tied to a specific event. They represent physical or digital badges issued to staff, press, artists, sponsors, or other individuals who need event access outside of standard ticket purchases. Each credential records:
  • A name and description
  • An access type (e.g., backstage, press, artist)
  • The holder’s full name and ID number

Routes

RouteDescription
/eventos-credenciales?id={eventId}List all credentials for an event
/eventos-credenciales-crear?id={eventId}Create a new credential
/eventos-credenciales-detalles?id={credentialId}View credential details
All credential routes require an id query parameter that identifies the event. Navigating without this parameter will result in an empty page.

Viewing credentials

Go to /eventos-credenciales?id={eventId} to view the credential list for an event. The page shows a ProfileBanner with the event details at the top, followed by the CredentialsTableList table. The table lists each credential’s name, access type, holder name, holder ID, and status. Credentials are stored in the events/{eventId}/credentials Firestore subcollection.

Creating a credential

1

Open the credential form

From the credential list page, click Nueva Credencial to navigate to /eventos-credenciales-crear?id={eventId}.
2

Fill in credential details

The Detalles credencial section requires:
FieldRequiredDescription
Nombre de la CredencialYesA descriptive name for the credential type (e.g., “Pase de Prensa”)
Tipo de AccesoYesThe access level this credential grants (e.g., “Backstage”, “General”)
DescripciónYesA longer description of what this credential allows
3

Fill in holder information

The Datos del Titular section identifies the person receiving this credential:
FieldRequiredDescription
Nombre del TitularYesFull name of the person who will hold this credential
Cédula del TitularYesGovernment ID number of the holder
4

Save the credential

Click Guardar to create the credential. The platform saves a document to events/{eventId}/credentials with the following structure:
{
  "name": "Pase de Prensa",
  "access": "Backstage",
  "description": "Acceso completo al área backstage",
  "holder": {
    "name": "Ana González",
    "id": "12345678"
  },
  "status": true,
  "date": {
    "created": "<server timestamp>",
    "updated": ""
  }
}
On success, you are redirected back to the credential list for the event.

Credential detail view

Click any credential in the list to open the detail page at /eventos-credenciales-detalles. The DetailCredentialsEvents component shows all credential fields in a read-only format.
Credentials are independent of ticket zones. They do not consume seats from the event’s zone allocation and cannot be used to validate entry through the standard ticket scanning flow.

Build docs developers (and LLMs) love