From b93cfe012a96cdbb6a7e99ec57a02a7b91d96d1e Mon Sep 17 00:00:00 2001 From: sarahrose-ferris <130575266+sarahrose-ferris@users.noreply.github.com> Date: Tue, 11 Aug 2026 11:57:10 +0100 Subject: [PATCH] Invalid content type for room theme endpoints --- .gitbook/assets/_api-reference-docs-openapi.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitbook/assets/_api-reference-docs-openapi.json b/.gitbook/assets/_api-reference-docs-openapi.json index ff4a902..657fb10 100644 --- a/.gitbook/assets/_api-reference-docs-openapi.json +++ b/.gitbook/assets/_api-reference-docs-openapi.json @@ -60,6 +60,9 @@ }, "NotFoundError": { "description": "The requested resource doesn't exist" + }, + "InvalidContentTypeError": { + "description": "Content-Type must be multipart/form-data or application/json" } }, "parameters": { @@ -1479,6 +1482,9 @@ "204": { "description": "The logo was saved successfully." }, + "400": { + "$ref": "#/components/responses/InvalidContentTypeError" + }, "401": { "$ref": "#/components/responses/UnauthorizedError" }, @@ -1536,6 +1542,9 @@ "204": { "description": "The background image was saved successfully." }, + "400": { + "$ref": "#/components/responses/InvalidContentTypeError" + }, "401": { "$ref": "#/components/responses/UnauthorizedError" }, @@ -1593,6 +1602,9 @@ "204": { "description": "The knock page background image was saved successfully." }, + "400": { + "$ref": "#/components/responses/InvalidContentTypeError" + }, "401": { "$ref": "#/components/responses/UnauthorizedError" },