09-10-2014 01:08 AM
Hi together,
following enviroment:
CTX Server Version 1.3 with AMM License applied
Apache Webserver running the WebApplication
When calling the API function "getCurrentMeetingStatus" - which requires the unique MeetingKey - and using the "meetingKey" attribute from the "getActiveMeetings" function results, I get the following Error from the soapCall: " Meeting is either invalid or inactive."
I don't get where the error is. GetActiveMeetings returns the following information:
For my understanding the "meetingKey" can be used for the "getCurrentMeetingStatus" function.
I hope you can understand my problem and help me.
Kind Regards,
Jannik
Solved! Go to Solution.
09-10-2014 01:21 AM
Okay i solved the problem by myself.
Following problem:
My original code was:
$cdrApiClient->getCurrentMeetingStatus($meetingKey);
But the function need an parameters array where the parameters are named.
so my solution looks like this:
$SoapCallParameters = array('meetingKey' => $meetingKey);
$result = $cdrApiClient->__soapCall(
"getCurrentMeetingStatus",
array('parameters' => $SoapCallParameters));
09-10-2014 01:21 AM
Okay i solved the problem by myself.
Following problem:
My original code was:
$cdrApiClient->getCurrentMeetingStatus($meetingKey);
But the function need an parameters array where the parameters are named.
so my solution looks like this:
$SoapCallParameters = array('meetingKey' => $meetingKey);
$result = $cdrApiClient->__soapCall(
"getCurrentMeetingStatus",
array('parameters' => $SoapCallParameters));
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide