To check the status of a task, send a GetStatus
action.
http://host:port/action=GetStatus&Token=token
where:
host
|
is the IP address or name of the machine where IDOL Speech Server is installed. |
port
|
is the ACI port by which actions are sent to IDOL Speech Server (set by the Port parameter in the IDOL Speech Server configuration file's [Server] section). |
token
|
is the token of the task for which you want to check the status. |
For example:
http://localhost:13000/action=GetStatus&Token=MTAuMS4zLjgyOjEzMDAwOkFERFRBU0s6LTEyOTk0OTU3Ng==
This action checks the status of the task with token MTAuMS4zLjgyOjEzMDAwOkFERFRBU0s6LTEyOTk0OTU3Ng==
on the IDOL Speech Server located on the local machine with the ACI port 13000
.
The GetStatus
action returns task information, including the current task status, settings, and warnings. For more information, see the IDOL Speech Server Reference.
If you enabled queuing, you can add the ShowQueue
parameter to the GetStatus
action. If the task is queued, the status information returns the position in the queue. For example:
http://localhost:13000/action=GetStatus&Token=MTAuMS4zLjgyOjEzMDARFRBU0s6LTEyOTk0OTU3Ng==&ShowQueue=True
|