Hello,
I've been able to do most things through the API so far. I'm actually using andrew farleys php handler for it, but don't worry about that. I'm trying to work out how to add an action condition to an existing action.
This does not work:
Further notes: End-goal is to add this condition, which is "Maintenance status not in "maintenance" " to every action, because none of them were built with it in the first place.
I've been able to do most things through the API so far. I'm actually using andrew farleys php handler for it, but don't worry about that. I'm trying to work out how to add an action condition to an existing action.
This does not work:
Code:
{
"auth": "--snip--",
"method": "action.create",
"id": 1,
"params": {
"actionid": "290",
"conditions": [
{
"conditiontype": "16",
"operator": "7",
"value": ""
}
]
},
"jsonrpc": "2.0"
}
Comment