<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(" ", @ARGV);<br>
<br>
my $con = new ESL::ESLconnection("localhost", "8021", "ClueCon");<br>
<br>
my $e = $con->bgapi($command, $args, "my-job-id");<br>
print $e->serialize("json");<br>
<br>
<br>
returns:<br>
<br>
{<br>
"Event-Name": "SOCKET_DATA",<br>
"Content-Type": "command/reply",<br>
"Reply-Text": "+OK Job-UUID: my-job-id",<br>
"Job-UUID": "my-job-id"<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>