List running processes in the machine
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/processes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/v1/machines/{id}/processes \
--header 'Authorization: Bearer <token>'[
{
"pid": 123,
"command": "<string>",
"running": true
}
]Machines
List running processes in the machine
GET
/
v1
/
machines
/
{id}
/
processes
List running processes in the machine
import requests
url = "https://api.13-215-85-171.sslip.io/v1/machines/{id}/processes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/v1/machines/{id}/processes \
--header 'Authorization: Bearer <token>'[
{
"pid": 123,
"command": "<string>",
"running": true
}
]