diff --git a/website/source/docs/agent/http.html.markdown b/website/source/docs/agent/http.html.markdown
index 468a8f7e43..b63bac4bf7 100644
--- a/website/source/docs/agent/http.html.markdown
+++ b/website/source/docs/agent/http.html.markdown
@@ -323,24 +323,33 @@ The return code is 200 on success.
### /v1/agent/check/pass/\
This endpoint is used with a check that is of the [TTL type](/docs/agent/checks.html).
-When this endpoint is accessed, the status of the check is set to "passing", and
-the TTL clock is reset.
+When this endpoint is accessed via a GET, the status of the check is set to "passing",
+and the TTL clock is reset.
+
+The optional "?node=" query parameter can be used to associate output with
+the status of the check. This should be human readable for operators.
The return code is 200 on success.
### /v1/agent/check/warn/\
This endpoint is used with a check that is of the [TTL type](/docs/agent/checks.html).
-When this endpoint is accessed, the status of the check is set to "warning", and
-the TTL clock is reset.
+When this endpoint is accessed via a GET, the status of the check is set to "warning",
+and the TTL clock is reset.
+
+The optional "?node=" query parameter can be used to associate output with
+the status of the check. This should be human readable for operators.
The return code is 200 on success.
### /v1/agent/check/fail/\
This endpoint is used with a check that is of the [TTL type](/docs/agent/checks.html).
-When this endpoint is accessed, the status of the check is set to "critical", and
-the TTL clock is reset.
+When this endpoint is accessed via a GET, the status of the check is set to "critical",
+and the TTL clock is reset.
+
+The optional "?node=" query parameter can be used to associate output with
+the status of the check. This should be human readable for operators.
The return code is 200 on success.