getThread
Retrieve a specific email thread by providing the inbox and thread ID, enabling AI agents to access and manage conversations within isolated inboxes.
Instructions
Get thread by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inbox_id | Yes | ||
thread_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"inbox_id": {
"title": "Inbox Id",
"type": "string"
},
"thread_id": {
"title": "Thread Id",
"type": "string"
}
},
"required": [
"inbox_id",
"thread_id"
],
"title": "getThreadArguments",
"type": "object"
}