diff --git a/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs b/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs
index 2231c3f5e..c58fb493c 100644
--- a/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs
+++ b/backend/src/Squidex/Areas/Api/Controllers/Contents/ContentsController.cs
@@ -429,14 +429,14 @@ namespace Squidex.Areas.Api.Controllers.Contents
}
///
- /// Publish a content item.
+ /// Change status of a content item.
///
/// The name of the app.
/// The name of the schema.
- /// The id of the content item to publish.
+ /// The id of the content item to change.
/// The status request.
///
- /// 200 => Content published.
+ /// 200 => Content status changed.
/// 404 => Content, schema or app not found.
/// 400 => Request is not valid.
///
@@ -458,13 +458,13 @@ namespace Squidex.Areas.Api.Controllers.Contents
}
///
- /// Create a new version.
+ /// Create a new draft version.
///
/// The name of the app.
/// The name of the schema.
- /// The id of the content item to discard changes.
+ /// The id of the content item to create the draft for.
///
- /// 200 => Content restored.
+ /// 200 => Content draft created.
/// 404 => Content, schema or app not found.
///
///
@@ -485,13 +485,13 @@ namespace Squidex.Areas.Api.Controllers.Contents
}
///
- /// Discard changes.
+ /// Delete the draft version.
///
/// The name of the app.
/// The name of the schema.
- /// The id of the content item to discard changes.
+ /// The id of the content item to delete the draft from.
///
- /// 200 => Content restored.
+ /// 200 => Content draft deleted.
/// 404 => Content, schema or app not found.
///
///