From 6f517f4a9806cb35089bea49426a4fe60e5c8a63 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 10 Aug 2017 11:41:25 -0400 Subject: [PATCH] Corrected HTTP verb in API docs --- docs/api/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/overview.md b/docs/api/overview.md index 84e88a6d2..bdf0a2f4c 100644 --- a/docs/api/overview.md +++ b/docs/api/overview.md @@ -6,7 +6,7 @@ REST stands for [representational state transfer](https://en.wikipedia.org/wiki/ * `GET`: Retrieve an object or list of objects * `POST`: Create an object -* `UPDATE`: Modify an existing object +* `PUT` / `PATCH`: Modify an existing object * `DELETE`: Delete an existing object The NetBox API represents all objects in [JavaScript Object Notation (JSON)](http://www.json.org/). This makes it very easy to interact with NetBox data on the command line with common tools. For example, we can request an IP address from NetBox and output the JSON using `curl` and `jq`. (Piping the output through `jq` isn't strictly required but makes it much easier to read.)