Delete Scheduled Event Data
One script reply has been approved by the moderators Verified

This endpoint requires an Enterprise subscription.

To submit a request to remove scheduled events data within a time range for your organization, use this endpoint. Requests for data deletion can take up to 7 days to complete.

Time range can be no greater than 24 months and must occur in the past.

Created by hugo697 408 days ago
Submitted by hugo697 Bun
Verified 408 days ago
1
//native
2
type Calendly = {
3
	token: string
4
}
5

6
export async function main(auth: Calendly, body: { start_time: string; end_time: string }) {
7
	const url = new URL(`https://api.calendly.com/data_compliance/deletion/events`)
8

9
	const response = await fetch(url, {
10
		method: 'POST',
11
		headers: {
12
			'Content-Type': 'application/json',
13
			Authorization: 'Bearer ' + auth.token
14
		},
15
		body: JSON.stringify(body)
16
	})
17

18
	if (!response.ok) {
19
		const text = await response.text()
20
		throw new Error(`${response.status} ${text}`)
21
	}
22

23
	return await response.json()
24
}
25