Fix typos in API documentation

Correct example for "acknowledge-problem" in the API documentation
(Issue#8546)
This commit is contained in:
Andreas Maus 2020-12-11 11:25:02 +01:00
parent eee76f707e
commit d891c3f932
1 changed files with 1 additions and 1 deletions

View File

@ -1216,7 +1216,7 @@ a notification for them:
```bash
curl -k -s -S -i -u root:icinga -H 'Accept: application/json' \
-X POST 'https://localhost:5665/v1/actions/acknowledge-problem' \
-d '{ "type": "Service", "filter": "service.state==2&service.state_type=1", "author": "icingaadmin", "comment": "Global outage. Working on it.", "notify": true, "pretty": true }'
-d '{ "type": "Service", "filter": "service.state==2 && service.state_type==1", "author": "icingaadmin", "comment": "Global outage. Working on it.", "notify": true, "pretty": true }'
```
```json