GetActions
Retrieve the list of actions via HTTP in Streamer.bot
Request
/GetActions
GET
No parameters
Response
{
"actions": [
{
"id": "<action guid>",
"name": "<action name>"
}
]
}
Example
curl -X GET http://127.0.0.1:7474/GetActions
const response = await fetch('http://127.0.0.1:7474/GetActions');
const data = await response.json();
console.log(data);
import requests
response = requests.get('http://127.0.0.1:7474/GetActions')
data = response.json()
print(data)