Skip to content

Commit 03e75bb

Browse files
Minor improvements for SSE API guide.
1 parent 05846bc commit 03e75bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/features/server-side-editor-api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
category: cloud-services
33
order: 30
44
meta-title: Cloud Services Server-side Editor API | CKEditor 5 Documentation
5-
meta-description: Learn how to use server-side API to manage content and collaboration data easily without running the editor.
5+
meta-description: Learn how to use server-side API to manage content and collaboration data easily without running the editor on the client.
66
modified_at: 2025-06-05
77
badges: [ premium ]
88
---
99

1010
# Server-side editor API
1111

12-
Server-side Editor API enables deep and complex integration of your application with all document data, enabling you to manipulate content and manage collaborative data such as suggestions, comments, and revision history, and much more, directly from your server-side code.
12+
Server-side Editor API enables deep and complex integration of your application with all document data, enabling you to manipulate content and manage collaborative data such as suggestions, comments, and revision history, and much more, directly from your server-side code (without running editor instance on the client).
1313

14-
The remote script REST API endpoint allows you to execute any JavaScript code that uses the CKEditor 5 API, that could be executed by a browser, but without a need to open the editor by a human user. Instead, the script is executed on the Cloud Services server.
14+
The server-side editor REST API endpoint allows you to execute any JavaScript code that uses the CKEditor 5 API, that could be executed by a browser, but without a need to open the editor by a human user. Instead, the script is executed on the Cloud Services server.
1515

1616
## Why use server-side editor API?
1717

@@ -285,7 +285,7 @@ for ( const item of items ) {
285285

286286
#### Working with annotations
287287

288-
Each suggestion in the editor is always connected with an annotation. Sometimes, you may want to gather additional data for suggestions based on their annotations, such as the suggestion label or the content in the document on which the suggestion is made, which are not available in the database.
288+
Each suggestion in the editor is always connected with an annotation. Sometimes, you may want to gather additional data for suggestions based on their annotations, such as the suggestion label or the content in the document on which the suggestion is made, which are not available through REST API.
289289

290290
The following example demonstrates retrieving suggestion data:
291291

@@ -329,7 +329,7 @@ for ( const annotation of annotations ) {
329329
}
330330
}
331331

332-
return JSON.stringify( results );
332+
return results;
333333
```
334334

335335
### Working with comments

0 commit comments

Comments
 (0)