Buzzin Documentation
  1. Logs
Buzzin Documentation
  • Getting Started
    • Overview
  • API Reference
    • Logs
      • Get filtered Events logs
        GET
    • Accesses
      • Create new QR Access
    • Users
      • Create new Property Manager
      • Update existing Property Manager
  • Schemas
    • Enter Events
    • Leave Event
    • Property Admin
  1. Logs

Get filtered Events logs

GET
/public/logs
This endpoint is designed to manage and retrieve log entries related to various events within the system.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.buzz-in.co/public/logs?propertyId={{$string.uuid}}&type=enterEvents&guestName=&dateStart={{$date.past}}&dateEnd={{$date.future}}&message=&extraField=&secondExtraField=&deviceId={{$string.uuid}}&flatId={{$string.uuid}}&hostId={{$string.uuid}}&guestMobileNumber=&delivererMobileNumber=&delivererName=&documentNumber=&documentOptionals=&accessCardLogs=false&accessCardId={{$string.uuid}}&designation=&skip=10&limit=10' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "_id": "string",
            "type": "enterEvents",
            "propertyId": "string",
            "deviceId": "string",
            "flatId": "string",
            "hostId": "string",
            "date": 0,
            "message": "string",
            "entryType": "string",
            "guestId": "string",
            "guestName": "string",
            "guestMobileNumber": "string",
            "left": true,
            "extraField": "string",
            "secondExtraField": "string",
            "isDigitalCard": true,
            "additionalFlatsIds": [
                "string"
            ],
            "accessId": "string",
            "emiratesData": {
                "mrzData": {}
            }
        }
    ],
    "total": 0,
    "skip": 0,
    "limit": 0
}
Previous
Overview
Next
Create new QR Access
Built with