How do I create and edit content entries?

5 मिनट पठनशुरुआती

Content entries are individual pieces of content — a blog post, a help article, a FAQ question. You create them within a content model and edit them using the built-in rich text editor.

Creating an entry

  1. Go to your project → IntegrationsContent CMS
  2. Click on your content model (e.g., "Blog Post")
  3. In the Overview tab, click "New Entry"
  4. Enter a title and slug (URL identifier)
  5. You're taken to the full-screen content editor

The content editor

The editor has two main areas:

Main editor (left)

A rich text editor powered by Plate.js. Write content in Markdown with live preview:

  • Headings# H1, ## H2, ### H3
  • Bold/italic**bold**, *italic*
  • Lists- item or 1. item
  • Code blocks — triple backticks with language
  • Links[text](url)
  • Images![alt](url) or paste directly
  • Tables — GFM table syntax

Keyboard shortcuts:

  • Cmd+S — save immediately
  • Cmd+B — bold
  • Cmd+I — italic

Metadata sidebar (right)

The sidebar shows:

  • Status — Draft or Published
  • Slug — URL-safe identifier
  • Custom fields — all fields defined in your model
  • Delete — remove the entry permanently

Auto-save

The editor auto-saves your changes with a debounce — you don't need to manually save. A dirty state indicator shows when you have unsaved changes. If you try to leave with unsaved changes, a warning dialog appears.

Language selector

At the top of the editor, a language selector shows all your target languages with translation status indicators:

  • Filled dot — translation exists for this language
  • Empty dot — no translation yet

Click a language to switch the editor to that language's content. Each language has its own title, body, and localizable custom field values.

Entry statuses

Status Meaning
Draft Entry is being worked on — not visible via API
Published Entry is live and accessible via the Content API

Viewing entries

From the content model's Overview tab, you see a table of all entries with:

  • Title
  • Status badge
  • Created/updated dates
  • Quick actions (edit, duplicate, delete)

Next steps