mqscript_turing_setconfig
Configure TURING robot settings by setting the API key, secret key, and default user ID for mobile automation tasks.
Instructions
Set TURING robot configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | Yes | TURING API key | |
| secretKey | No | TURING secret key | |
| userId | No | Default user ID |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "TURING API key",
"type": "string"
},
"secretKey": {
"description": "TURING secret key",
"type": "string"
},
"userId": {
"description": "Default user ID",
"type": "string"
}
},
"required": [
"apiKey"
],
"type": "object"
}