diff --git a/api-reference/v2/resources/changelog.mdx b/api-reference/v2/resources/changelog.mdx index 25cee8c..eedbba9 100644 --- a/api-reference/v2/resources/changelog.mdx +++ b/api-reference/v2/resources/changelog.mdx @@ -2,6 +2,11 @@ title: Glide API Changelog sidebarTitle: Changelog --- +### August 23, 2024 + +- The `POST /tables` endpoint now returns HTTP status 201 on success instead of 200. +- The `POST /tables/{tableID}/rows` endpoint now returns HTTP status 201 on success instead of 200. + ### August 2, 2024 - Add [delete stash](/api-reference/v2/stashing/delete-stash) endpoint documentation diff --git a/openapi/swagger.json b/openapi/swagger.json index 32a81d3..43ea6aa 100644 --- a/openapi/swagger.json +++ b/openapi/swagger.json @@ -102,7 +102,7 @@ }, "post": { "responses": { - "200": { + "201": { "description": "", "content": { "application/json": { @@ -722,7 +722,7 @@ "/tables/{tableID}/rows": { "post": { "responses": { - "200": { + "201": { "description": "", "content": { "application/json": {