microcms_update_content_draft
Update microCMS content as a draft by specifying the endpoint, content ID, and JSON data. Supports field types like text, HTML, images, dates, and references. Ensures draft updates follow microCMS field format rules.
Instructions
Update content in microCMS (PUT - full update) as draft. Field type specifications: Image fields require URLs from the same microCMS service (e.g., "https://images.microcms-assets.io/assets/xxx/yyy/sample.png"). Multiple image fields use array format. Rich editor fields expect HTML strings. Date fields use ISO 8601 format. Select fields use arrays. Content reference fields use contentId strings or arrays for multiple references.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content data to update (JSON object). Field formats: text="string", richEditor="<h1>HTML</h1>", image="https://images.microcms-assets.io/...", multipleImages=["url1","url2"], date="2020-04-23T14:32:38.163Z", select=["option1","option2"], contentReference="contentId" or ["id1","id2"]. | |
contentId | Yes | Content ID to update | |
endpoint | Yes | Content type name (e.g., "blogs", "news") |