Webinars
Reschedule Webinar
Move a webinar’s start time. Every pending anchored wait (‘wait until webinar start ± offset’) in in-flight workflow runs is recomputed so reminder sequences follow the new time.
POST
/
v1
/
webinars
/
reschedule
Reschedule Webinar
const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar_id: '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
start_time: '2026-09-08T17:00:00Z'
})
};
fetch('https://api.flywheel.cx/v1/webinars/reschedule', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar_id: '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
start_time: '2026-09-08T17:00:00Z'
})
};
fetch('https://api.flywheel.cx/v1/webinars/reschedule', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://api.flywheel.cx/v1/webinars/reschedule \
--header 'Auth-Type: <api-key>' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"webinar_id": "0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69",
"start_time": "2026-09-08T17:00:00Z"
}
'import requests
url = "https://api.flywheel.cx/v1/webinars/reschedule"
payload = {
"webinar_id": "0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69",
"start_time": "2026-09-08T17:00:00Z"
}
headers = {
"Authorization": "<api-key>",
"Auth-Type": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flywheel.cx/v1/webinars/reschedule",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'webinar_id' => '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
'start_time' => '2026-09-08T17:00:00Z'
]),
CURLOPT_HTTPHEADER => [
"Auth-Type: <api-key>",
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"success": true,
"recomputed": 123
}Authorizations
Enter your API key obtained from the Flywheel dashboard (without 'Bearer ' prefix)
Authentication type header. Must be set to 'api' for all API requests.
Body
application/json
⌘I
Reschedule Webinar
const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar_id: '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
start_time: '2026-09-08T17:00:00Z'
})
};
fetch('https://api.flywheel.cx/v1/webinars/reschedule', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar_id: '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
start_time: '2026-09-08T17:00:00Z'
})
};
fetch('https://api.flywheel.cx/v1/webinars/reschedule', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request POST \
--url https://api.flywheel.cx/v1/webinars/reschedule \
--header 'Auth-Type: <api-key>' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"webinar_id": "0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69",
"start_time": "2026-09-08T17:00:00Z"
}
'import requests
url = "https://api.flywheel.cx/v1/webinars/reschedule"
payload = {
"webinar_id": "0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69",
"start_time": "2026-09-08T17:00:00Z"
}
headers = {
"Authorization": "<api-key>",
"Auth-Type": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.flywheel.cx/v1/webinars/reschedule",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'webinar_id' => '0d4f6f36-2b6a-4c1e-9a6f-1f2d3c4b5a69',
'start_time' => '2026-09-08T17:00:00Z'
]),
CURLOPT_HTTPHEADER => [
"Auth-Type: <api-key>",
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"success": true,
"recomputed": 123
}