List user scripts
Request
HTTP Method: POST
Content Type: application/json
Parameters
Property | Type | Description | Required |
---|---|---|---|
| integer(int64) | configuration ID (non-negative) | required |
{ "params": { "configuration_id": 1 } }
Response
HTTP Status: 200
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| object of type | user scripts running on hosts |
| boolean | response with error or not |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
user_scripts_response
Property | Type | Description |
---|---|---|
| map of array of | map from host name to list of user scripts; host names are the primary and standby hosts for the configuration |
user_script
Property | Type | Description |
---|---|---|
| string | full path to the script |
{ "error": { "message": "string" }, "result": { "scripts_by_host": { "host_name1": [ { "script": "string" } ], "host_name2": [ { "script": "string" } ] } }, "successful": true }
HTTP Status: 400
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| boolean | always false |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
{ "error": { "message": "string" }, "successful": false }
Comments