Skip to content
v1.0.0
OAS 3.0.1

Email Changes Notifications API

The Email Change Notification API allows you to receive information about the time and author of each autosave for security and atomic integrity purposes during simultaneous editing. This webhook needs to be specified in the plugin settings to function correctly.

To ensure that the webhook functions correctly, you need to specify an endpoint in the plugin settings that meets the following specifications.

Server:
Client Libraries

Methods

Methods Operations

Notification on email changes

Provides details about the time and author of each autosave, ensuring security and atomic integrity during simultaneous editing.

Body
required
application/json
  • email​Id
    Type: string
    required
  • user​Id
    Type: string
    required
  • date​Time
    Type: integerFormat: int64

    Signed 64-bit integers (long type).

Responses
  • 200
    Type: object | null

    Successful response

Request Example for post/
curl / \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "emailId": "",
  "userId": "",
  "dateTime": 1
}'
null

Models