You can use REST APIs to run QCommands. Review the following information to determine which QCommand API to use.
API
|
Syntax
|
When to Use
|
POST /QCommand
|
POST <webservice>/QCommand/<qcommand> <applicable parameters>
<XML if required by the qcommand>
|
-
Request does not contain the following special characters: < > * % & : \
-
Request is less than or equal to 260 characters
-
Supports XML in the request body
|
POST /QCommand
|
POST <webservice>/QCommand
<qcommand> <applicable parameters>
|
-
Request can contain the following special characters: < > * % & : \
-
Request is less than or equal to 260 characters
-
Does not support XML in the request body
|
POST /ExecuteQCommand
|
POST <webservice>/ExecuteQCommand
command: <qcommand> <applicable parameters> inputRequestXML: <XML if required by the qcommand>
|
-
Request can contain the following special characters: < > * % & : \
-
Request can be greater than 260 characters
-
Supports XML in the request body
|