update_entry
Modify existing entries in Contentstack by specifying the content type UID, entry UID, and updated entry data using the update_entry function.
Instructions
Updates an existing entry identified by its UID and content type UID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type_uid | Yes | Content type UID | |
entry | Yes | Updated entry data | |
entry_uid | Yes | Entry UID to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content_type_uid": {
"description": "Content type UID",
"type": "string"
},
"entry": {
"additionalProperties": true,
"description": "Updated entry data",
"properties": {},
"type": "object"
},
"entry_uid": {
"description": "Entry UID to update",
"type": "string"
}
},
"required": [
"content_type_uid",
"entry_uid",
"entry"
],
"type": "object"
}