MS Exchange Data Export#
Filename: <YYYY-MM-DD_HHMM>_ms_exchange.json.gz
Layout:
ELEMENT |
DESCRIPTION |
DATA TYPE |
VERSION |
---|---|---|---|
provider_name |
Name of the Provider |
string |
v4 |
reseller_name |
Name of the Reseller |
string |
v4 |
customer_name |
name of the customer |
string |
v4 |
hierarchy |
The full hierarchy path for the item being exported |
string |
v4 |
username |
MS Exchange User Name |
string |
v4 |
exchange_mailbox_details |
dictionary of permission types |
dictionary |
v4 |
exchange_mailbox_details.calendar_permissions |
List of calendar permissions |
array |
v4 |
calendar_permissions.user |
Calendar username |
string |
v4 |
calendar_permissions.access_rights |
list of calendar permission rights |
array |
v4 |
exchange_mailbox_details.permissions |
List of permissions |
array |
v4 |
permissions.user |
Permissions username |
string |
v4 |
permissions.access_rights |
list of permission rights |
array |
v4 |
Example
[
{
"username": "[email protected]",
"hierarchy": "sys.003954111679.Prov1.Resel1.Cust1",
"exchange_mailbox_details": {
"calendar_permissions": [
{
"user": "ms_exchange_user_1",
"access_rights": [
"Editor",
"Publishing Author",
"Author"
]
}
],
"permissions": [
{
"user": "ms_exchange_user_1",
"access_rights": [
"FullAccess",
"SendAs"
]
}
]
},
"reseller_name": "Resel1",
"provider_name": "Prov1",
"customer_name": "Cust1"
},
{
"username": "[email protected]",
"hierarchy": "sys.003954111679.Prov1.Resel1.Cust1",
"exchange_mailbox_details": {
"calendar_permissions": [
{
"user": "ms_exchange_user_2",
"access_rights": [
"Editor",
"Publishing Author",
"Author"
]
}
],
"permissions": [
{
"user": "ms_exchange_user_2",
"access_rights": [
"FullAccess",
"SendAs"
]
}
]
},
"reseller_name": "Resel1",
"provider_name": "Prov1",
"customer_name": "Cust1"
}
]