From 588a7d0a5bfd0422a35ef5f6d98632e2530117ef Mon Sep 17 00:00:00 2001 From: James Mikrut Date: Tue, 11 Apr 2023 09:44:01 -0400 Subject: [PATCH] Update overview.mdx --- docs/rest-api/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rest-api/overview.mdx b/docs/rest-api/overview.mdx index aadca233ae..9e994fa091 100644 --- a/docs/rest-api/overview.mdx +++ b/docs/rest-api/overview.mdx @@ -32,7 +32,7 @@ Note: Collection slugs must be formatted in kebab-case | `GET` | `/api/{collection-slug}/:id` | Find a specific document by ID | | `POST` | `/api/{collection-slug}` | Create a new document | | `PATCH` | `/api/{collection-slug}` | Update all documents matching the `where` query | -| `PATCH` | `/api/{collection-slug}` | Update a document by ID | +| `PATCH` | `/api/{collection-slug}/:id` | Update a document by ID | | `DELETE` | `/api/{collection-slug}` | Delete all documents matching the `where` query | | `DELETE` | `/api/{collection-sldug}/:id` | Delete an existing document by ID |