continue
Resumes a script that was paused by the break command or by a breakpoint.
TIP: This command does not remove a breakpoint. If the script encounters the breakpoint again, it will stop. To remove a breakpoint, use the remove-breakpoint command.
/action=luaDebug&command=continue[&session=SessionID]
                                                
Type: Synchronous
| Parameter Name | Description | Required | 
|---|---|---|
| Session | The session ID of the session for which you want to resume running Lua scripts. If you do not set this parameter, all sessions resume running. You can retrieve a session ID by using the get-status command. | No | 
Example
http://localhost:7000/action=luadebug&command=continue&session=1e37b4cfbbcf580e1918f5d7bed36651
Response
<autnresponse>
  <action>LUADEBUG</action>
  <response>SUCCESS</response>
  <responsedata>
    <data>
      <command>continue</command>
      <session id="1e37b4cfbbcf580e1918f5d7bed36651"/>
    </data>
  </responsedata>
</autnresponse>