I am trying to create Zoom meeting via API. In the HTTP request activity i have added the endpoint and selected “post” method.
In the headers i have added the bearer token. and below json i have added in the body.
{
“topic”: “Test”,
“type”: “2”,
“start_time”: “2021-05-06T22:00:00”,
“duration”: “10”,
“timezone”: “UTC”,
“password”: “asdasd”,
“agenda”: “Demo”
}
But still it gives me response as “Request Body should be a valid JSON object”. I have tried all different ways to resolve this issue. Atlast i am putting this here on forum. Some help here would be greatly approciated. Thanks in advance
Hi Paul,
I found the solution. The Json input was correct but the body format should be “application/json”.It was “application/xml” before and so it was not working