Skip to main content

Events API

Manage events for your applications to enable check-in functionality.

Base URL

https://api.reeng.xyz/api/events

Authentication

All event management endpoints require API key authentication. Include your API key in the request headers:

X-API-Key: your-api-key

Response Format

Success:

{
"status": true,
"message": "Success message",
"data": { }
}

Error:

{
"status": false,
"message": "Error message",
"errors": [ ]
}

Event ID Format

Event IDs are provided by your application and should be unique within your application scope. The system uses your eventId as the externalEventId to track events.

Check-in Code Format

When you create an event, a unique check-in code is generated with the format: evt_ followed by 32 hexadecimal characters.

Example: evt_a1b2c3d4e5f6789012345678901234ab

This check-in code is used to initialize check-ins for the event.