{
"actions": [
{
"id": "<action guid>",
"name": "<action name>"
}
]
}
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)