Hi there!<br><br>The situation is:<br>- Person A calls to the extension:<br>&lt;extension name=&quot;some_ext&quot;&gt;<br>  &lt;condition field=&quot;destination_number&quot; expression=&quot;^900.$&quot;&gt;<br>    &lt;action application=&quot;answer&quot;/&gt;<br>
    &lt;action application=&quot;park&quot;/&gt;<br>  &lt;/condition&gt;<br>&lt;/extension&gt;<br><br>- I bridge him with person B with help of mod_socket:<br>SendMsg &lt;some_uuid&gt;<br>call-command: execute<br>execute-app-name: bridge<br>
execute-app-arg: &lt;person B address in form: &quot;user/...&quot;&gt;<br><br>- A and B talks<br><br>- Person C decides to barge in the call A&lt;--&gt;B (to become a third participator in the call)<br>a) I send (mod_socket):<br>
api originate user/&lt;person C address&gt; &amp;park()<br>b) then I move A, B, C to the extension:<br>&lt;extension name=&quot;barge_in&quot;&gt;<br>  &lt;action application=&quot;conference&quot; data=&quot;my_confname@my_profile+flags{mintwo}&quot;/&gt;<br>
&lt;/extension&gt;<br><br>conference profile &quot;my_profile&quot; is:<br>&lt;profile name=&quot;my_profile&quot;&gt;<br>  &lt;!-- Sample Rate--&gt;<br>  &lt;param name=&quot;rate&quot; value=&quot;8000&quot;/&gt;<br>  &lt;!-- Number of milliseconds per frame --&gt;<br>
  &lt;param name=&quot;interval&quot; value=&quot;20&quot;/&gt;<br>  &lt;!-- Energy level required for audio to be sent to the other users --&gt;<br>  &lt;param name=&quot;energy-level&quot; value=&quot;300&quot;/&gt;<br>
  &lt;!-- Name of the caller control group to use for this profile --&gt;<br>  &lt;param name=&quot;caller-controls&quot; value=&quot;none&quot;/&gt;<br>  &lt;param name=&quot;comfort-noise-level&quot; value=&quot;1400&quot;/&gt;<br>
  &lt;!-- enable comfort noise generation --&gt;<br>  &lt;param name=&quot;comfort-noise&quot; value=&quot;true&quot;/&gt;<br>&lt;/profile&gt;<br><br>The &quot;moving&quot; itself is done by sending this for each (A,B,C) channel<br>
SendMsg &lt;uuid&gt;<br>call-command: execute<br>execute-app-name: execute_extension<br>execute-app-arg: barge_in<br><br>- Result: A, B, C are in the same conference with name &quot;my_confname&quot;, A can hear B and vice verse, but both A and B can&#39;t hear C. C also doesn&#39;t hear neither A nor B.<br>
<br>I also tried the &quot;moving&quot; to conference with<br>api uuid_transfer &lt;A_uuid&gt; -both barge_in<br>api uuid_transfer &lt;C_uuid&gt; barge_in<br>but result is the same.<br><br>Maybe someone already faced with such issue?<br>
<br><br>Thanks,<br>Artem<br>