From dd225e13212758a9c0b00b42097398b20f9b7f2d Mon Sep 17 00:00:00 2001 From: Bennett Blodinger Date: Thu, 1 Jan 2015 16:53:47 -0500 Subject: [PATCH] fix typo `curl -XGET` is duplicated --- docs/api/making-requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/making-requests.md b/docs/api/making-requests.md index 5a207372..0936fd28 100644 --- a/docs/api/making-requests.md +++ b/docs/api/making-requests.md @@ -8,7 +8,7 @@ The API is accessible from `http:///api/` You can use curl to interact with the API. There is no authentication required for `GET` requests: -`curl -XGET curl -XGET http://status.cachethq.io/api/components` +`curl -XGET http://status.cachethq.io/api/components` In order to create incidents, you must send the a json string with the required payload and authenticate. More information can be found in the Endpoints documentation listed below.