Skip to main content
POST
Create Content from Template
Creates a new content item using an existing template as a starting point. The new content inherits the template’s structure, ContentType, and package version.

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID

Request Body

templateId
string
required
ID of the template content to use
name
string
required
Display name for the new content
description
string
Description for the new content (overrides template description)
content
object
Content data that overrides template values. Merged with template content.
tags
string[]
Tags for the new content (replaces template tags if provided)
folderId
string
Folder ID for organization

Example Request

Response

Returns the created Content object.
Content created from a template inherits the template’s typeId, typeVersion, and packageVersion. The provided content object is merged with the template’s content, allowing you to override specific fields.

Error Responses

Template Not Found

Not a Template

Validation Failed

Code Examples