Buzzin Documentation
  1. Users
Buzzin Documentation
  • Getting Started
    • Overview
  • API Reference
    • Logs
      • Get filtered Events logs
    • Accesses
      • Create new QR Access
    • Users
      • Create new Property Manager
        POST
      • Update existing Property Manager
        PATCH
  1. Users

Create new Property Manager

POST
/public/communityManagers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.buzz-in.co/public/communityManagers' \
--header 'Content-Type: application/json' \
--data-raw '{
    "propertyId": "string",
    "email": "string",
    "phone": "string",
    "password": "string",
    "name": "string"
}'
Response Response Example
{
    "_id": "667d3b9afcd3f10012eafdce",
    "propertyId": "667d3b9afcd3f10012eafdce",
    "type": "propertyAdmins",
    "name": "Erick Runte",
    "phone": "971512345678",
    "email": "Felix.Mann@yahoo.com"
}

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Body Params application/json
propertyId
string 
required
email
string 
required
phone
string 
required
password
string 
required
name
string 
required
Examples

Responses

🟢200Success
application/json
Body
_id
string 
required
ID
propertyId
string 
required
type
enum<string> 
required
Allowed value:
propertyAdmins
Example:
propertyAdmins
name
string 
required
phone
string 
required
email
string 
required
Previous
Create new QR Access
Next
Update existing Property Manager
Built with