get_recent_messages
Retrieve the 10 most recent messages from Carbon Voice, including details like Conversation, Creator, and Labels. Optional filters: conversation_id and language for targeted results.
Instructions
Get most recent messages, including their associated Conversation, Creator, and Labels information. Returns a maximum of 10 messages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_id | No | Conversation ID (optional) | |
language | No | Language (optional) - Original language will be used if not provided or not found. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"conversation_id": {
"description": "Conversation ID (optional)",
"type": "string"
},
"language": {
"description": "Language (optional) - Original language will be used if not provided or not found.",
"type": "string"
}
},
"type": "object"
}