| JSON object |
| _id | ObjectId | Id of the customer this Helpcenter belongs to. |
| name | String | Name of the customer this Helpcenter belongs to. |
| helpCenters | Array | Settings for each of the customer's help centers, see definition below. |
| helpCenters[].id | ObjectId | Id of the helpcenter. |
| helpCenters[].name | String | Name of Helpcenter. |
| helpCenters[].applicationId | String | ApplicationId (GUID) used to authenticate with Microsoft. |
| helpCenters[].tenantId | String | TenantId (GUID) used to authenticate with Microsoft. |
| helpCenters[].appClientValue | String | ClientSecret used to authenticate with Microsoft. |
| helpCenters[].emailAddress | String | Emailaddress of the support email that the Helpcenter will belong to. |
| helpCenters[].signature | String | Signature stored for auto use when sending emails. |
| helpCenters[].startDate | String | Date of when Help Center should retrieve mails FROM. |
| helpCenters[].initialized | Boolean | True when the help center has completed its initial mail import. |
| helpCenters[].authSettings | Object | Settings for accessToken. |
| helpCenters[].authSettings.accessToken | String | Access token received from Microsoft, used as bearer token. Valid for 1 hour. |
| helpCenters[].authSettings.expires | Date | Date of expiration for accessToken. |
| helpCenters[].subscription | Object | Settings for subscription to Graph. |
| helpCenters[].subscription.id | String | Id for subscription. Used to receive change notifications. |
| helpCenters[].subscription.clientState | String | Randomly generated clientState used to validate the request. Set up when creating a subscription. |
| helpCenters[].subscription.resource | String | Uri to the specific email inbox to listen to. |
| helpCenters[].subscription.created | Date | Date of creation of subscription. |
| helpCenters[].subscription.expires | Date | Date of expiration of subscription. |
| helpCenters[].subscription.changeTypes | Array | Change types received from Microsoft: 'created', 'updated', 'deleted'. |