i wan’t to create a meeting scheduled meeting but i specific my start_time options but always i still get the meeting with myy current time .
$response = $client->request(‘POST’, ‘/v2/users/me/meetings’, [
“headers” => [
“Authorization” => "Bearer ". getZoomAccessToken()
],
‘json’ => [
“topic” => $_POST[‘topic’],
“type” =>$_POST[‘type’],
“host_email”=> $_POST[‘email’],
“timezone”=> “America/New_York “,
“start_time” => $_POST[‘meeting-time’].”:30Z”,
“duration” => $_POST[‘duration’], // 30 mins
“password” =>$_POST[‘password’]
],
]);