POST api/sync/mailsync

Syncronise Email with Rezi Events, attach documents etc Processes this sync API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The mail sync data contract supplied with the request.

MailSyncDataContract
NameDescriptionTypeAdditional information
SyncFromDate

The sync from date, expressed as a date and time.

date

None.

ExtractInlineImages

Indicates whether extract inline images is true.

boolean

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "SyncFromDate": "2026-07-23T10:26:54.6864972Z",
  "ExtractInlineImages": true
}

Response Information

Resource Description

The response returned after the operation completes.

JobInvocationDetailsDataContract
NameDescriptionTypeAdditional information
SupportsCancellation

Indicates whether supports cancellation is true.

boolean

None.

ReportsProgress

Indicates whether reports progress is true.

boolean

None.

InitialStatusText

The initial status text value.

string

None.

JobReference

The job reference globally unique identifier.

globally unique identifier

None.

Success

Indicates whether success is true.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "SupportsCancellation": true,
  "ReportsProgress": true,
  "InitialStatusText": "sample string 3",
  "JobReference": "cbb9ca5e-2ae3-4471-8444-9ead8d2cd2fe",
  "Success": true
}