diff --git a/templates/front/docs_api.html b/templates/front/docs_api.html index 69990ea8..5dddab73 100644 --- a/templates/front/docs_api.html +++ b/templates/front/docs_api.html @@ -67,7 +67,7 @@ The response may contain a JSON document with additional data. tags

string, optional, default value: ""

-

A comma-delimited list of tags for the new check.

+

A space-delimited list of tags for the new check.

@@ -100,9 +100,9 @@ The response may contain a JSON document with additional data.

Example Request

-curl {{ SITE_ROOT }}/v1/checks/ \
+curl {{ SITE_ROOT }}api/v1/checks/ \
     -X POST \
-    -d '{"api_key": "your-api-key", "name": "Backups", "tags": "prod,www", "timeout": 3600, "grace": 60}'
+    -d '{"api_key": "your-api-key", "name": "Backups", "tags": "prod www", "timeout": 3600, "grace": 60}'
 

Example Response