get_entry
Retrieve a specific entry by its content type and entry UID, with options for locale and including references, to efficiently manage and access content.
Instructions
Retrieves a specific entry by its content type UID and entry UID, with options for locale and including references.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type_uid | Yes | Content type UID | |
entry_uid | Yes | Entry UID to retrieve | |
include_reference_content_type_uid | No | Include content type UIDs in references | |
include_references | No | References to include | |
locale | No | Locale code (e.g., 'en-us') |
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_uid": {
"description": "Entry UID to retrieve",
"type": "string"
},
"include_reference_content_type_uid": {
"default": false,
"description": "Include content type UIDs in references",
"type": "boolean"
},
"include_references": {
"description": "References to include",
"items": {
"type": "string"
},
"type": "array"
},
"locale": {
"description": "Locale code (e.g., 'en-us')",
"type": "string"
}
},
"required": [
"content_type_uid",
"entry_uid"
],
"type": "object"
}