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 |