<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
As for the sequence ID question, you can supply your own job-uuid<br>
header when you send the bgapi-command<br>
<br>
bgapi show channels<br>
job-uuid: 1234<br>
<br>
This was not available from the script mods when I checked so I added<br>
it to latest build.<br>
example in perl but true in all swigged langs.<br>
<br>
my $command = shift;<br>
my $args = join(&quot; &quot;, @ARGV);<br>
<br>
my $con = new ESL::ESLconnection(&quot;localhost&quot;, &quot;8021&quot;, &quot;ClueCon&quot;);<br>
<br>
my $e = $con-&gt;bgapi($command, $args, &quot;my-job-id&quot;);<br>
print $e-&gt;serialize(&quot;json&quot;);<br>
<br>
<br>
returns:<br>
<br>
{<br>
        &quot;Event-Name&quot;:   &quot;SOCKET_DATA&quot;,<br>
        &quot;Content-Type&quot;: &quot;command/reply&quot;,<br>
        &quot;Reply-Text&quot;:   &quot;+OK Job-UUID: my-job-id&quot;,<br>
        &quot;Job-UUID&quot;:     &quot;my-job-id&quot;<br>
<div><div></div><div class="h5">}<br></div></div></blockquote><div><br></div><div><br></div><div>Awesome! This also has been added to the wiki:</div><div><a href="http://wiki.freeswitch.org/wiki/Event_Socket_Library#bgapi">http://wiki.freeswitch.org/wiki/Event_Socket_Library#bgapi</a></div>
<div><br></div><div>-MC</div></div>