Script Management
Path:/api/v1/session/id_script_list
Method:POST
Content-Type:application/json
Interface Description: Lists all contained scripts in the specified environment. (Support single or multiple environments)
Request Parameters
Parameter Name | Type | Require | Default Value | Explanation |
Session_ID | array | Yes | 373808cb37bd63f5f7d92415e736e85f | Specify the environment ID query environment |
Request Example
{
"Session_ID": ["373808cb37bd63f5f7d92415e736e85f","705cc4c139e69b729a2fd277f30e1863"]
}
Execution Success Return
{
"message": "Session Script List Success",
"code": 0,
"data": {
"listcontainer": [{
"Session_Name": "Business Environment I",
"Session_ID": "373808cb37bd63f5f7d92415e736e85f",
"Group_Name": "default",
"Actived_script_id": "O73808cb37bd63f5f7d92415e736e999",
"Actiived_script_name": "Here's an example of a script",
"Actiived_script_encode": "true",
"Script_Count": "4",
"UnActived_script_list": [{
"UnActived_script_encode": "false",
"UnActived_script_Name": "AAA",
"UnActived_script_ID": "17c70e014d61b1fa43d3638ca5a1bc21"
},{
"UnActived_script_encode": "false",
"UnActived_script_Name": "BBB",
"UnActived_script_ID": "17c70e014d61b1fa43d3638ca5a1bc22"
}],
"status": 0
}
}
}