]> granicus.if.org Git - icinga2/commitdiff
Documentation: Fix missing quotes for API action URL
authorMichael Friedrich <michael.friedrich@netways.de>
Wed, 25 May 2016 19:19:33 +0000 (21:19 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Wed, 25 May 2016 19:19:33 +0000 (21:19 +0200)
fixes #11847

doc/9-icinga2-api.md

index f79696b5760302cae5298c4288b4fa6acc7affb0..9ee4afea1ef5e397249f3093cffccc9ff928512b 100644 (file)
@@ -318,7 +318,7 @@ Some queries can be performed for more than just one object type. One example is
 action which can be used for both hosts and services. When using advanced filters you will also have to specify the
 type using the `type` parameter:
 
-    $ curl -k -s -u root:icinga -H 'Accept: application/json' -X POST "https://localhost:5665/v1/actions/reschedule-check \
+    $ curl -k -s -u root:icinga -H 'Accept: application/json' -X POST 'https://localhost:5665/v1/actions/reschedule-check' \
     -d '{ "type": "Service", "filter": "service.name==\"ping6\"" }' | python -m json.tool
 
 When building filters you have to ensure that values such as
@@ -694,7 +694,7 @@ The example reschedules all services with the name "ping6" to immediately perfor
 (`next_check` default), ignoring any time periods or whether active checks are
 allowed for the service (`force_check=true`).
 
-    $ curl -k -s -u root:icinga -H 'Accept: application/json' -X POST "https://localhost:5665/v1/actions/reschedule-check \
+    $ curl -k -s -u root:icinga -H 'Accept: application/json' -X POST 'https://localhost:5665/v1/actions/reschedule-check' \
     -d '{ "type": "Service", "filter": "service.name==\"ping6\"", "force_check": true }' | python -m json.tool
 
     {