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
  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 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'
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
}

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params
propertyId
string 
optional
Property ID
Example:
{{$string.uuid}}
type
enum<string> 
optional
Allowed values:
enterEventsleaveEventsreportEventsresolveEventsdeliveryEventsaccessCardEventsaccessCardLeaveEvents
Example:
enterEvents
guestName
string 
optional
dateStart
number 
optional
Example:
{{$date.past}}
dateEnd
number 
optional
Example:
{{$date.future}}
message
string 
optional
extraField
string 
optional
secondExtraField
string 
optional
deviceId
string 
optional
Example:
{{$string.uuid}}
flatId
string 
optional
Example:
{{$string.uuid}}
hostId
string 
optional
Example:
{{$string.uuid}}
guestMobileNumber
string 
optional
delivererMobileNumber
string 
optional
delivererName
string 
optional
documentNumber
string 
optional
documentOptionals
string 
optional
accessCardLogs
boolean 
optional
Example:
false
accessCardId
string 
optional
Example:
{{$string.uuid}}
designation
string 
optional
skip
number 
optional
Example:
10
limit
number 
optional
Example:
10

Responses

🟢200Success
application/json
Body
data
array [anyOf] 
required
object (Enter Events) 
optional
object (Leave Event) 
optional
total
number 
required
skip
number 
required
limit
number 
required
Previous
Overview
Next
Create new QR Access
Built with