Skip to main content
Version: Insiders

Create Mailbox

The Easylife 365 Mail API supports the provisioning of three types of mailboxes:

  • Shared Mailboxes: Mailboxes that can be accessed by multiple users, typically used for shared email addresses like shared-mailbox@company.com.

  • Equipment Mailboxes: Mailboxes used to manage resources such as projectors, vehicles, or other equipment.

  • Room Mailboxes: Mailboxes used to manage meeting rooms or other physical spaces, allowing users to book them via calendar invites.

Create a new mailbox with the specified properties.

HTTP Request

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json

HTTP Request Headers

HeaderValue
AuthorizationBearer token. (Required)
Content-Typeapplication/json

Request Body

Mailbox Properties Table

PropertyTypeDescription & Example
namestringUnique identifier for the mailbox. Example: "support". Required
displayNamestringHuman-readable display name. Example: "Customer Support". Required
templateIdstring (UUID)Template identifier for predefined mailbox template. Ensure that the type of template corresponds to the mailbox type being provisioned. Example: "fc6ffbd8-f7f0-4c05-b707-227d233b9e1b". Required
permissionsobjectDefines user permissions for the mailbox. Required
metadataobjectKey-value pairs for custom metadata. Example: { "department": "HR", "createdBy": "Admin" }. Optional
capacityintegerMailbox storage capacity in MB. Example: 5000. Optional
statestringCurrent state of the mailbox. Example: "active". Optional
streetAddressstringPhysical address (if applicable). Example: "123 Corporate Blvd". Optional
officeLocationstringOffice location name. Example: "HQ - Floor 5". Optional
companyNamestringAssociated company name. Example: "Acme Corp". Optional
postalCodestringPostal code of the location. Example: "10001". Optional
citystringCity of the mailbox location. Example: "New York". Optional
countrystringCountry name. Example: "USA". Optional
businessPhonesarray<string>List of business phone numbers. Example: ["+1-800-555-1234", "+1-800-555-5678"]. Optional
phonestringPrimary contact phone number. Example: "+1-800-555-5678". Optional
departmentstringDepartment name associated with the mailbox. Example: "HR". Optional
primaryOwnerstring (UUID)UUID of the primary owner. Example: "49cf935a-284f-4c84-8df7-a5b11f1be527". Optional
secondaryOwnerstring (UUID)UUID of the secondary owner. Example: "6a95c23b-cbb3-4f06-9b05-5e96ac65c78c". Optional
automaticReplystringAuto-reply message for the mailbox. Example: "Thank you for contacting us.". Optional
isAllowAutomaticReplyOverridebooleanIf true, allows users to override auto-reply. Example: true. Optional
domainstringDomain of the mailbox. Example: "company.com". Optional
audioDeviceNamestringAssociated audio device (for room/equipment). Example: "Bose Speaker System". Optional
displayDeviceNamestringAssociated display device. Example: "Samsung 85-inch Display". Optional
tagsarray<string>Tags for mailbox classification. Example: ["support", "helpdesk"]. Optional
videoDeviceNamestringAssociated video device. Example: "Logitech Video Conference Camera". Optional
isWheelChairAccessiblebooleanIf true, indicates wheelchair accessibility. Example: true. Optional
roomMailboxMetadataobjectRoom properties metadata. Optional
hideFromGALbooleanIf true, hides mailbox from the Global Address List (GAL). Example: false. Optional
notesstringAdditional notes for mailbox usage. Example: "This mailbox is monitored by the HR team.". Optional
reasonstringReason for creating the mailbox. Example: "For job applications". Optional
autoMappingbooleanIf true, mailbox is auto-mapped for assigned users. Example: true. Optional
aliasstringAlternate email alias for the mailbox. Example: "recruitment@company.com"

Expanded Object Type Definitions

metadata (Object)

Stores additional information about the mailbox in key-value format.

PropertyTypeDescription & Example
Custom KeystringAny key-value pair that provides extra details. Example: { "manager": "John Doe", "createdBy": "Admin" }
Example Usage
{
"metadata": {
"el-text-388": "Used for customer inquiries",
"manager": "John Doe",
"createdBy": "Admin"
}
}

permissions (Object)

Defines access rights for users to the mailbox.

Property (UUID)TypeDescription
User IDstringUnique identifier of a user Example: a5f1b3d7-49c2-4e87-b4f6-d8e2a9c3e7b1
Access Levelstring (enum)One of: "None", "SendAs", "FullAccess"
Example Usage
{
"permissions": {
"49cf935a-284f-4c84-8df7-a5b11f1be527": "FullAccess",
"f3c98a7b-129d-4f06-b8f1-e7a1d9c84e5a": "SendAs",
"a5f1b3d7-49c2-4e87-b4f6-d8e2a9c3e7b1": "None"
}
}

roomMailboxMetadata (Object)

Specific settings for room mailboxes (e.g., meeting rooms).

PropertyTypeDescription
hasConferencePhonebooleanIf true, the room has a conference phone.
hasWhiteboardbooleanIf true, the room has a whiteboard.
hasVideoConferencingbooleanIf true, the room has video conferencing equipment.
Example Usage
{
"roomMailboxMetadata": {
"hasConferencePhone": true,
"hasWhiteboard": true,
"hasVideoConferencing": false
}
}

Example: Creating a Mailbox

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json
Authorization: Bearer <token>
{
"name": "john.doe",
"displayName": "John Doe",
"templateId": "fc6ffbd8-f7f0-4c05-b707-227d233b9e1b",
"metadata": {
"el-text-388": "Custom text field content goes here!"
},
"primaryOwner": "49cf935a-284f-4c84-8df7-a5b11f1be527",
"secondaryOwner": "6a95c23b-cbb3-4f06-9b05-5e96ac65c78c"
}

Example: Creating a Shared Mailbox with dedicated permissions

HTTP Request

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json
Authorization: Bearer <token>

Request Body

{
"name": "support",
"displayName": "Customer Support",
"templateId": "fc6ffbd8-f7f0-4c05-b707-227d233b9e1b",
"metadata": {
"el-text-388": "Used for customer inquiries",
"department": "Support"
},
"primaryOwner": "49cf935a-284f-4c84-8df7-a5b11f1be527",
"secondaryOwner": "6a95c23b-cbb3-4f06-9b05-5e96ac65c78c",
"permissions": {
"a9b7d6f3-c2e5-4a1b-b9e7-f1d5a3e9c6d4": "FullAccess",
"49cf935a-284f-4c84-8df7-a5b11f1be527": "SendAs"
},
"alias": "support@company.com",
"autoMapping": true,
"hideFromGAL": false,
"notes": "Handles all customer support queries."
}

Example: Creating an Equipment Mailbox

HTTP Request

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json
Authorization: Bearer <token>

Request Body

{
"name": "projector-1",
"displayName": "Conference Room Projector",
"metadata": {
"equipmentType": "Projector",
"el-text-388": "4K projector for executive conference rooms."
},
"primaryOwner": "35c2f1d5-789e-4c53-ade4-f1c7e65a3e9f",
"capacity": 500,
"permissions": {
"a9b7d6f3-c2e5-4a1b-b9e7-f1d5a3e9c6d4": "FullAccess",
"49cf935a-284f-4c84-8df7-a5b11f1be527": "None"
},
"automaticReply": "This projector is available for booking via the calendar system.",
"isAllowAutomaticReplyOverride": false,
"notes": "Only authorized users can book this projector."
}

Example: Creating a Room Mailbox

HTTP Request

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json
Authorization: Bearer <token>

Request Body

{
"name": "executive-boardroom",
"displayName": "Executive Boardroom",
"officeLocation": "HQ - Floor 5",
"streetAddress": "123 Corporate Blvd",
"city": "New York",
"country": "USA",
"capacity": 20,
"isWheelChairAccessible": true,
"primaryOwner": "49cf935a-284f-4c84-8df7-a5b11f1be527",
"permissions": {
"a9b7d6f3-c2e5-4a1b-b9e7-f1d5a3e9c6d4": "FullAccess",
"49cf935a-284f-4c84-8df7-a5b11f1be527": "SendAs"
},
"roomMailboxMetadata": {
"hasConferencePhone": true,
"hasWhiteboard": true,
"hasVideoConferencing": true
},
"automaticReply": "This room is available for booking during business hours.",
"isAllowAutomaticReplyOverride": true
}

Example: Create shared mailbox with additional metadata

HTTP Request

POST https://api.easylife365.cloud/mail/v1/mailboxes/
Content-Type: application/json
Authorization: Bearer <token>

Request Body

{
"name": "hr-recruitment",
"displayName": "HR Recruitment",
"metadata": {
"department": "HR",
"el-text-388": "Used for handling job applications."
},
"primaryOwner": "a9b7d6f3-c2e5-4a1b-b9e7-f1d5a3e9c6d4",
"businessPhones": ["+1-800-555-1234"],
"phone": "+1-800-555-5678",
"permissions": {
"a9b7d6f3-c2e5-4a1b-b9e7-f1d5a3e9c6d4": "FullAccess",
"49cf935a-284f-4c84-8df7-a5b11f1be527": "SendAs"
},
"alias": "recruitment@company.com",
"autoMapping": true,
"hideFromGAL": false,
"notes": "Receives resumes and job inquiries."
}

Comparison of Key Properties by Mailbox Type

PropertyShared MailboxEquipment MailboxRoom Mailbox
autoMapping✅ Yes❌ No❌ No
alias✅ Yes❌ No❌ No
capacity✅ Yes✅ Yes✅ Yes
automaticReply✅ Yes✅ Yes✅ Yes
permissions✅ Yes✅ Yes✅ Yes
roomMailboxMetadata❌ No❌ No✅ Yes
isWheelChairAccessible❌ No❌ No✅ Yes
officeLocation❌ No❌ No✅ Yes
equipmentType (custom metadata)❌ No✅ Yes❌ No