I receive empty result when I'm creating meeting by api

Early everything were ok, but today, when I call the method for create a meeting in logs are ok, but the result is empty:
this is my result:
‌GuzzleHttp\Psr7\Stream::__set_state(array(
‘stream’ => NULL,
‘size’ => NULL,
‘seekable’ => true,
‘readable’ => true,
‘writable’ => true,
‘uri’ => ‘php://temp’,
‘customMetadata’ =>

This is my log on zoom account:
{
“endpoint”: “apizoomus/v2/users/me/meetings”,
“response_headers”: [
“Set-Cookie: zm_aid=”"; Domain=.zoom.us; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/; Secure; HttpOnly"
],
“date_time”: “2021-01-15 12:36:09”,
“method”: “POST”,
“request_body”: “{“topic”:“Brasil”,“start_time”:“2021-01-18T10:11:00”,“duration”:109,“password”:626361,“agenda”:null,“host_video”:“0”,“participant_video”:“0”}”,
“response”: “{“uuid":“pWbPyXWUSxSp0fTl4t1F5g==”,“id”:92989396391,“host_id”:“X_vdUoBEQVOXEHxCPw6J3w”,“host_email”:"m.eldar@newizze.com”,“topic”:“Brasil”,“type”:2,“status”:“waiting”,“start_time”:“2021-01-18T07:11:00Z”,“duration”:109,“timezone”:“Europe/Moscow”,“created_at”:“2021-01-15T09:36:09Z”,“start_url”:“zoomus/s/92989396391?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJYX3ZkVW9CRVFWT1hFSHhDUHc2SjN3IiwiaXNzIjoid2ViIiwic3R5IjoxLCJ3Y2QiOiJhdzEiLCJjbHQiOjAsInN0ayI6IlZicEttRFVUMjZhZEVJbUwxbmMyeXZZMzV6TG1tYm8wT3JDUGhkUVlUcEEuQUcuMTZzOERTbTF0dFhwRTlzTzBlSEZXS1YxMzZ4M2lxWE9YXy1XcWh5dXpKajdvTjZ4dngwZlhXeThnZlFRY09VeDhQbDNOcUpYeHE4dFd4NC5vNWpCc2dwWVNYWGtnblVZU1Jwbkx3LlY3SGxTYzRlVFB5WjNPQ1UiLCJleHAiOjE2MTA3MTA1NjksImlhdCI6MTYxMDcwMzM2OSwiYWlkIjoieTV1SGJkWmZSWWVlUDRzM2xLYVQ2USIsImNpZCI6IiJ9.9a2Lf5HRVkrFQtbdq54ox2l8eIhmcM4FZbK__y9MEhE”,“join_url”:“zoomus/j/92989396391?pwd=djZLQ3MveEJXRkdyS1ZTclpBaW5EQT09”,“password”:”******",“h323_password”:“626361”,“pstn_password”: …",
“request_headers”: [
“authorization: ******”,
“connection: close”,
“content-type: application/json”,
“user-agent: GuzzleHttp/7”
],
“request_params”: [
],
“http_status”: “201”
}

This my code for create meeting:
public function meeting($zoomData, $groupId)
{
$client = new Client([‘base_uri’ => ‘zoom url’]);
$accessToken = getValue(‘zoom/connection/access_token_’ . $groupId);
$data = [
‘headers’ => [
‘Content-Type’ => ‘application/json’,
‘Accept’ => ‘application/json’,
‘Authorization’ => “Bearer $accessToken”
],
‘json’ => $zoomData,
];
$response = $client->request(‘POST’, ‘/v2/users/me/meetings’, $data);
increaseLimit($groupId);
return $response->getBody();
}

Hi @m.eldar,

Thank you for reaching out about this.

When I check Meeting with ID 92989396391, I can see that this was successfully created on 1/15/21. Are you not seeing this reflected in the Zoom UI? From what I can tell, this request was a success, but let me know if you’re seeing otherwise.

Thanks,
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.