Description
I am trying to create a webinar through API in Json format and i am getting 300 error like Request Body should be a valid JSON object.
Error
Request Body should be a valid JSON object.
Using JWT authenticaion
POST: https://api.zoom.us/v2/users/{myuserid}/webinars
JSON POST data: {
“topic”: “My First Webinar”,
“type”: 5,
“start_time”: “2025-2-25T10:00:00Z”,
“duration”: 90,
“timezone”: “UTC”,
“agenda”: “This is a test webinar to demonstrate the functionality.”,
“settings”: {
“host_video”: true,
“panelists_video”: false,
“practice_session”: false,
“mute_upon_entry”: true,
“approval_type”: 1,
“registration_type”: 1,
“authentication_option”: “sign_in_required”,
“meeting_authentication”: true,
“allow_multiple_devices”: false,
“auto_recording”: “none”,
“screen_sharing”: false,
“in_meeting_chat”: false,
“allow_participant_share_screen”: false,
“allow_participants_to_invite_others”: false,
“allow_participants_to_record”: false,
“waiting_room”: true,
“host_controls_attendee_view”: true,
“show_share_button”: false
}
}