Read-Write Access ALPHA
Required plan: EmergingRead-Write Access mode allows your application to create events directly into user calendars, as well as to update or delete the events it creates via the Create or Update event endpoint.
This ensures a seamless integration between the user’s calendar and your application, making it particularly valuable for workflows such as scheduling meetings and identifying open time slots through the Availability API.
Read/Write mode is currently available for users connecting their calendars with the following calendar providers:
- Apple iCloud
- Office 365
- On-Premise Exchange
Connecting a user in Read-Write mode #
Individual Connect #
Required Scope: free_busy_write
This mode follows the Individual Connect authorisation flow. Within this mode you can make use of any of the Cronofy scopes that are suited to your application’s use case when Requesting Authorization.
https://app.cronofy.com/oauth/authorize?response_type=code
&client_id={CLIENT_ID}
&redirect_uri={REDIRECT_URI}
&scope=free_busy_write
&state={STATE}
Enterprise Connect #
Required Delegated Scope: free_busy_write
Required Scope: service_account/accounts/manage
This mode follows the same steps as the Enterprise Connect flow. Within this mode you can make use of any of the Cronofy scopes that are suited to your application’s use case when Requesting Authorization.
https://app.cronofy.com/enterprise_connect/oauth/authorize
?response_type=code
&client_id={CLIENT_ID}
&redirect_uri={REDIRECT_URI}
&scope=service_account/accounts/manage
&delegated_scope=free_busy_write
&state={STATE}