Webinars
Create Webinar
Create a webinar for your organization. API-created webinars default to ‘scheduled’ status. Link an automation (workflow) to enroll registrants into it automatically.
POST
/
v1
/
webinars
Create Webinar
const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar: {
title: 'Onboarding Masterclass',
start_time: '2026-09-01T17:00:00Z',
timezone: 'America/New_York',
duration_minutes: 60,
join_url: 'https://zoom.us/j/123456789',
provider: 'zoom'
}
})
};
fetch('https://api.flywheel.cx/v1/webinars', 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: {
title: 'Onboarding Masterclass',
start_time: '2026-09-01T17:00:00Z',
timezone: 'America/New_York',
duration_minutes: 60,
join_url: 'https://zoom.us/j/123456789',
provider: 'zoom'
}
})
};
fetch('https://api.flywheel.cx/v1/webinars', 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 \
--header 'Auth-Type: <api-key>' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"webinar": {
"title": "Onboarding Masterclass",
"start_time": "2026-09-01T17:00:00Z",
"timezone": "America/New_York",
"duration_minutes": 60,
"join_url": "https://zoom.us/j/123456789",
"provider": "zoom"
}
}
'import requests
url = "https://api.flywheel.cx/v1/webinars"
payload = { "webinar": {
"title": "Onboarding Masterclass",
"start_time": "2026-09-01T17:00:00Z",
"timezone": "America/New_York",
"duration_minutes": 60,
"join_url": "https://zoom.us/j/123456789",
"provider": "zoom"
} }
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",
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' => [
'title' => 'Onboarding Masterclass',
'start_time' => '2026-09-01T17:00:00Z',
'timezone' => 'America/New_York',
'duration_minutes' => 60,
'join_url' => 'https://zoom.us/j/123456789',
'provider' => 'zoom'
]
]),
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;
}{
"webinar": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"duration_minutes": 123,
"join_url": "<string>",
"provider": "<string>",
"automation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z"
}
}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
Show child attributes
Show child attributes
Response
Webinar created
Show child attributes
Show child attributes
⌘I
Create Webinar
const options = {
method: 'POST',
headers: {
Authorization: '<api-key>',
'Auth-Type': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
webinar: {
title: 'Onboarding Masterclass',
start_time: '2026-09-01T17:00:00Z',
timezone: 'America/New_York',
duration_minutes: 60,
join_url: 'https://zoom.us/j/123456789',
provider: 'zoom'
}
})
};
fetch('https://api.flywheel.cx/v1/webinars', 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: {
title: 'Onboarding Masterclass',
start_time: '2026-09-01T17:00:00Z',
timezone: 'America/New_York',
duration_minutes: 60,
join_url: 'https://zoom.us/j/123456789',
provider: 'zoom'
}
})
};
fetch('https://api.flywheel.cx/v1/webinars', 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 \
--header 'Auth-Type: <api-key>' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"webinar": {
"title": "Onboarding Masterclass",
"start_time": "2026-09-01T17:00:00Z",
"timezone": "America/New_York",
"duration_minutes": 60,
"join_url": "https://zoom.us/j/123456789",
"provider": "zoom"
}
}
'import requests
url = "https://api.flywheel.cx/v1/webinars"
payload = { "webinar": {
"title": "Onboarding Masterclass",
"start_time": "2026-09-01T17:00:00Z",
"timezone": "America/New_York",
"duration_minutes": 60,
"join_url": "https://zoom.us/j/123456789",
"provider": "zoom"
} }
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",
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' => [
'title' => 'Onboarding Masterclass',
'start_time' => '2026-09-01T17:00:00Z',
'timezone' => 'America/New_York',
'duration_minutes' => 60,
'join_url' => 'https://zoom.us/j/123456789',
'provider' => 'zoom'
]
]),
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;
}{
"webinar": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"duration_minutes": 123,
"join_url": "<string>",
"provider": "<string>",
"automation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z"
}
}